removed old node id management from makefile

This commit is contained in:
joxe 2006-10-09 09:12:46 +00:00
parent ca05ae80a5
commit e49539eea9
1 changed files with 9 additions and 10 deletions

View File

@ -1,4 +1,4 @@
# $Id: Makefile.msp430,v 1.4 2006/09/01 22:56:26 adamdunkels Exp $ # $Id: Makefile.msp430,v 1.5 2006/10/09 09:12:46 joxe Exp $
### Check if we are running under Windows ### Check if we are running under Windows
@ -113,12 +113,11 @@ endif
### Node id ### ### Node id ###
# .PHONY: node-id.c
.PHONY: node-id.c # ifndef $(nodeid)
ifndef $(nodeid) # nodeid := 0
nodeid := 0 # endif
endif # node-id.c:
node-id.c: # @-rm -f $@
@-rm -f $@ # @echo >$@ "const unsigned short node_id = $(nodeid);"
@echo >$@ "const unsigned short node_id = $(nodeid);" # @echo ">>>> NODE ID SET TO $(nodeid)!"
@echo ">>>> NODE ID SET TO $(nodeid)!"