b2810f02e1
Therefore I introduced the make variable CONTIKI_PROJECT. Now a typical project Makefile starts with: CONTIKI_PROJECT = hello-world all: $(CONTIKI_PROJECT)
9 lines
170 B
Makefile
9 lines
170 B
Makefile
CONTIKI_PROJECT = telnet-server
|
|
all: $(CONTIKI_PROJECT)
|
|
|
|
APPS = telnetd program-handler
|
|
DEFAULT_TARGET = minimal-net
|
|
|
|
CONTIKI = ../..
|
|
include $(CONTIKI)/Makefile.include
|