X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2FMakefile;h=55953d2805ed62522de0b7e9c52d4ddcf0f9f3e2;hp=f0c23456714217548387e3102fac8370d41d5439;hb=1f8e984b38e60a3b2aa0609864f05250cc8df673;hpb=8c6abfea1a9e8225746fed39bcb8ffeba01670a9 diff --git a/firmware/Makefile b/firmware/Makefile index f0c2345..55953d2 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -1,39 +1,53 @@ #include `uname`.mak - GOODFET?=/dev/ttyUSB0 -BSL=../../contrib/tos-bsl --invert-reset --invert-test -c $(GOODFET) --speed=38400 + + +#For tos-bsl, use --invert-reset --invert-test +BSL?=goodfet.bsl -c $(GOODFET) --speed=38400 + + +#One of these should be defined explicitly. +#Default removed because of confusion. #mcu=msp430x2274 #mcu=msp430x2618 -mcu?=msp430x1612 - +#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 CCEXTRA?= -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) #Define extra modules here. -moreapps?= +moreapps?=apps/i2c/i2c.o apps/chipcon/chipcon.o apps/glitch/glitch.o apps/jtag/sbw.o apps/smartcard/smartcard.o +# should include apps/jtag/jtagarm7tdmi.o to build jtag for ARM7 -apps= $(moreapps) apps/monitor/monitor.o apps/spi/spi.o apps/i2c/i2c.o apps/chipcon/chipcon.o apps/jtag/jtag.o apps/jtag/jtag430.o apps/jtag/jtag430x2.o -libs= lib/$(mcu).o lib/command.o apps/jtag/jtag430asm.o +apps= $(moreapps) 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/jtag/ejtag.o apps/jtag/jtagxscale.o +libs= lib/$(mcu).o lib/command.o apps/jtag/jtag430asm.o apps/chipcon/chipconasm.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 - ls info.txt && $(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: @@ -47,3 +61,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