mirror of https://github.com/contiki-ng/mspsim
use FIRMWAREFILE if specified
git-svn-id: https://mspsim.svn.sourceforge.net/svnroot/mspsim/mspsim@15 23d1a52b-0c3c-0410-b72d-8f29ab48fe35
This commit is contained in:
parent
b7431015a4
commit
3be23e8300
12
Makefile
12
Makefile
|
|
@ -52,9 +52,13 @@ CCARGS=-deprecation -classpath .
|
|||
# SERVER OBJECTS
|
||||
###############################################################
|
||||
|
||||
FIRMWAREFILE = blinker2.ihex
|
||||
ifndef FIRMWAREFILE
|
||||
ESBFIRMWARE = firmware/esb/sensor-demo.firmware
|
||||
SKYFIRMWARE = firmware/sky/sensor-demo.firmware
|
||||
else
|
||||
ESBFIRMWARE = $FIRMWAREFILE
|
||||
SKYFIRMWARE = $FIRMWAREFILE
|
||||
endif
|
||||
|
||||
CPUTEST := tests/cputest.firmware
|
||||
|
||||
|
|
@ -115,11 +119,7 @@ mtest: compile $(CPUTEST)
|
|||
# CLEAN (untrusted, use with great care!!!)
|
||||
###############################################################
|
||||
|
||||
.PHONY: clean claen clena
|
||||
|
||||
claen: clean
|
||||
|
||||
clena: clean
|
||||
.PHONY: clean
|
||||
|
||||
clean:
|
||||
ifdef WINDIR
|
||||
|
|
|
|||
Loading…
Reference in New Issue