Good stuff for ARM7TDMI. get_/set_register() seem to work ok.
[goodfet] / firmware / Makefile
index b3be6d4..55953d2 100644 (file)
@@ -1,29 +1,57 @@
 
-PORT=/dev/ttyUSB0
-BSL=msp430-bsl --invert-reset --invert-test -c $(PORT) --speed=38400
+#include `uname`.mak
+GOODFET?=/dev/ttyUSB0
 
-#mcu=msp430x1611
-mcu=msp430x1612
 
-#ldscript is wonky
-GCCINC=-T ldscripts/161x.x
+#For tos-bsl, use --invert-reset --invert-test
+BSL?=goodfet.bsl -c $(GOODFET) --speed=38400
 
-CC=msp430-gcc -g -mmcu=$(mcu) -DGCC $(GCCINC) -I include
 
-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/msp430f1612.o lib/command.o apps/jtag/jtag430asm.o
-app=goodfet
+#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
+
+CCEXTRA?=
+CC=msp430-gcc -Wall -Os -g -mmcu=$(mcu) -D$(mcu) -DGCC $(GCCINC) -I include $(CCEXTRA)
+
+#Define extra modules here.
+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/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) -e -p $(app).hex 
-       #$(BSL) -P $(app).hex -r
+verify:
+       $(BSL) -P $(app).hex -v $(app).hex
+dumpinfo:
+       $(BSL) --dumpinfo
 $(app): $(app).c $(libs) $(apps)
 $(app).hex: $(app)
        msp430-objcopy goodfet -O ihex goodfet.hex
@@ -33,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