mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-22 10:30:13 +00:00
b2810f02e1
Therefore I introduced the make variable CONTIKI_PROJECT. Now a typical project Makefile starts with: CONTIKI_PROJECT = hello-world all: $(CONTIKI_PROJECT)
12 lines
246 B
Makefile
12 lines
246 B
Makefile
CONTIKI_PROJECT = testv6
|
|
all: $(CONTIKI_PROJECT)
|
|
|
|
APPS = webserver
|
|
DEFAULT_TARGET = minimal-net
|
|
CFLAGS = -DUIP_CONF_IPV6
|
|
|
|
CONTIKI = ../..
|
|
include $(CONTIKI)/Makefile.include
|
|
|
|
testv6.$(TARGET): $(OBJECTDIR)/tapdev6.o #$(OBJECTDIR)/uip-keepalive.o
|