1
0
mirror of https://github.com/oliverschmidt/contiki.git synced 2025-02-15 04:32:30 +00:00

24 lines
299 B
Makefile
Raw Normal View History

TARGET=stepper-robot
2007-08-21 09:06:23 +00:00
all: core
2007-08-21 09:06:23 +00:00
core:
$(MAKE) core.$(TARGET)
2007-08-21 09:06:23 +00:00
CONTIKI=../..
2007-08-21 09:06:23 +00:00
CORE=core-nosyms.$(TARGET)
2007-08-21 09:06:23 +00:00
codeprop: $(CONTIKI)/tools/codeprop.c
cc -g -Wall $< -o $@
2007-08-21 09:06:23 +00:00
clean: stepper_robot_clean
2007-08-21 09:06:23 +00:00
.PHONY: stepper_robot_clean
2007-08-21 09:06:23 +00:00
stepper_robot_clean:
-rm codeprop
2007-08-21 09:06:23 +00:00
include $(CONTIKI)/Makefile.include