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)
9 lines
148 B
Makefile
9 lines
148 B
Makefile
CONTIKI_PROJECT = webbrowser
|
|
all: $(CONTIKI_PROJECT)
|
|
|
|
APPS = webbrowser
|
|
DEFAULT_TARGET = win32
|
|
|
|
CONTIKI = ../..
|
|
include $(CONTIKI)/Makefile.include
|