Here we have it folks! Step right up, new make system!
[newos.git] / apps / init / makefile
blob429c66d5788d7bb02007383bd9656e40d689366c
1 # app makefile
2 MY_TARGETDIR := $(APPS_BUILD_DIR)/init
3 MY_SRCDIR := $(APPS_DIR)/init
4 MY_TARGET := $(MY_TARGETDIR)/init
5 ifeq ($(call FINDINLIST,$(MY_TARGET),$(ALL)),1)
7 MY_OBJS := \
8 init.o
10 MY_INCLUDES := -Iinclude -Iinclude/nulibc
11 MY_CFLAGS := $(USER_CFLAGS)
12 MY_LIBS := $(ULIBS)
13 MY_LIBPATHS :=
14 MY_DEPS :=
15 MY_GLUE := $(APPSGLUE)
17 include templates/app.mk
19 endif