mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-03 22:06:22 +00:00
24 lines
299 B
Makefile
24 lines
299 B
Makefile
TARGET=stepper-robot
|
|
|
|
all: core
|
|
|
|
core:
|
|
$(MAKE) core.$(TARGET)
|
|
|
|
CONTIKI=../..
|
|
|
|
CORE=core-nosyms.$(TARGET)
|
|
|
|
codeprop: $(CONTIKI)/tools/codeprop.c
|
|
cc -g -Wall $< -o $@
|
|
|
|
clean: stepper_robot_clean
|
|
|
|
.PHONY: stepper_robot_clean
|
|
|
|
stepper_robot_clean:
|
|
-rm codeprop
|
|
|
|
include $(CONTIKI)/Makefile.include
|
|
|