X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2FMakefile;h=7f94842431c4d2dc8ab47725aa7de2105a691828;hp=75ada153f0604c921ffa474d1897c85c51ce2c81;hb=dd259c9289deb11e84be93647c144192e5ba10b6;hpb=4ad169e89a063394cbc38963eba6fdd0b52ceba4 diff --git a/firmware/Makefile b/firmware/Makefile index 75ada15..7f94842 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -1,36 +1,63 @@ -PORT=/dev/ttyUSB0 -BSL=../../contrib/tos-bsl --invert-reset --invert-test -c $(PORT) --speed=38400 +#include `uname`.mak +#GOODFET?=/dev/ttyUSB0 + + +#For tos-bsl, use --invert-reset --invert-test +BSL?=goodfet.bsl --speed=38400 -#mcu=msp430x2618 -mcu=msp430x1612 +#One of these should be defined explicitly. +#Default removed because of confusion. + +#mcu=msp430x2274 +#mcu=msp430x2618 +#mcu?=msp430x1612 +mcu?=RUNCONFIG #N.B., gcc WILL NOT BITCH if this file doesn't exist. #GCCINC=-T ldscripts/161x.x GCCINC=-T ldscripts/$(mcu).x -CC=msp430-gcc -Wall -g -mmcu=$(mcu) -DGCC $(GCCINC) -I include +CCEXTRA?= +CC=msp430-gcc -Wall -Os -g -mmcu=$(mcu) -D$(mcu) -DGCC $(GCCINC) -I include $(CCEXTRA) -apps= apps/monitor/monitor.o apps/spi/spi.o apps/i2c/i2c.o apps/chipcon/chipcon.o apps/jtag/jtag.o apps/jtag/jtag430.o -libs= lib/$(mcu).o lib/command.o apps/jtag/jtag430asm.o -app=goodfet +#Define extra modules here. +#moreapps?=apps/i2c/i2c.o apps/glitch/glitch.o apps/jtag/sbw.o apps/smartcard/smartcard.o apps/jtag/ejtag.o apps/jtag/jtagxscale.o +moreapps?=apps/jtag/sbw.o +# should include apps/jtag/jtagarm7tdmi.o to build jtag for ARM7 +# should include apps/pic/dspic33f.o to build support for PIC24H/dsPIC33F + + +apps= $(moreapps) apps/chipcon/chipcon.o apps/radios/nrf.o apps/monitor/monitor.o apps/spi/spi.o apps/jtag/jtag.o apps/jtag/jtag430.o apps/jtag/jtag430x2.o apps/avr/avr.o + +#apps/chipcon/chipconasm.o removed +libs= lib/$(mcu).o lib/command.o apps/jtag/jtag430asm.o lib/dco_calib.o + +app= goodfet all: $(app).hex +lib/.o: + ./configure + false +lib/RUNCONFIG.o: + ./configure + false + goodfet.hex: goodfet run: ../client/goodfet.msp430 test install: $(app).hex - $(BSL) -e - #$(BSL) -p info.txt || true #MSP430F2xx targets only, inelegant. - $(BSL) -p $(app).hex + #$(BSL) -e + ls info.txt && $(BSL) -p info.txt || true #MSP430F2xx targets only, inelegant. + $(BSL) -e -p $(app).hex verify: $(BSL) -P $(app).hex -v $(app).hex dumpinfo: - $(BSL) --dumpinfo -c /dev/ttyUSB0 + $(BSL) --dumpinfo $(app): $(app).c $(libs) $(apps) $(app).hex: $(app) msp430-objcopy goodfet -O ihex goodfet.hex @@ -40,3 +67,8 @@ erase: $(BSL) -e clean: rm -f $(app) $(app).hex $(libs) $(apps) +docs: + doxygen +pushdocs: docs + rsync --exclude .svn -ave ssh doc/html/* travisutk,goodfet@web.sourceforge.net:htdocs/docs/ +.FAKE: docs