2007-02-24 01:21:16 +01:00
|
|
|
TARGET=stepper-robot
|
|
|
|
|
2007-08-21 11:06:23 +02:00
|
|
|
all: core
|
2007-02-24 01:21:16 +01:00
|
|
|
|
2007-08-21 11:06:23 +02:00
|
|
|
core:
|
|
|
|
$(MAKE) core.$(TARGET)
|
2007-02-24 01:21:16 +01:00
|
|
|
|
2007-08-21 11:06:23 +02:00
|
|
|
CONTIKI=../..
|
2007-02-24 01:21:16 +01:00
|
|
|
|
2007-08-21 11:06:23 +02:00
|
|
|
CORE=core-nosyms.$(TARGET)
|
2007-02-24 01:21:16 +01:00
|
|
|
|
2009-07-11 17:07:59 +02:00
|
|
|
CONTIKI_TARGET_MAIN=contiki-main.c
|
|
|
|
|
2007-08-21 11:06:23 +02:00
|
|
|
codeprop: $(CONTIKI)/tools/codeprop.c
|
|
|
|
cc -g -Wall $< -o $@
|
2007-03-07 17:15:00 +01:00
|
|
|
|
2007-08-21 11:06:23 +02:00
|
|
|
clean: stepper_robot_clean
|
2007-02-24 01:21:16 +01:00
|
|
|
|
2007-08-21 11:06:23 +02:00
|
|
|
.PHONY: stepper_robot_clean
|
2007-02-24 01:21:16 +01:00
|
|
|
|
2007-08-21 11:06:23 +02:00
|
|
|
stepper_robot_clean:
|
|
|
|
-rm codeprop
|
2007-02-24 01:21:16 +01:00
|
|
|
|
2007-08-21 11:06:23 +02:00
|
|
|
include $(CONTIKI)/Makefile.include
|
2007-03-18 14:15:00 +01:00
|
|
|
|