Terminal program for MailStation devices
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Makefile: Default to LOC=ram again, print out what its value is

+4 -1
+4 -1
Makefile
··· 23 23 24 24 OBJ?= obj/ 25 25 26 - LOC?= 26 + LOC?= ram 27 + 27 28 .if ${LOC} == "flash" 28 29 BASE_ADDR= 0x4000 29 30 .elif ${LOC} == "ram" ··· 34 35 @exit 1 35 36 .endif 36 37 38 + .BEGIN: 39 + @echo "compiling for running from ${LOC} (${BASE_ADDR})" 37 40 38 41 all: msterm.bin 39 42