welcome to memory model land.
[newos.git] / apps / fortune / makefile
blob5c10b68318dded6638953a34ee1efcd2106da585
1 # app makefile
2 MY_TARGETDIR := $(APPS_BUILD_DIR)/fortune
3 MY_SRCDIR := $(APPS_DIR)/fortune
4 MY_TARGET := $(MY_TARGETDIR)/fortune
5 ifeq ($(call FINDINLIST,$(MY_TARGET),$(ALL)),1)
7 MY_SRCS := \
8 main.c
10 MY_INCLUDES := $(STDINCLUDE)
11 MY_CFLAGS := $(USER_CFLAGS)
12 MY_LIBS := -lc -lnewos -lsupc++
13 MY_LIBPATHS :=
14 MY_DEPS :=
15 MY_GLUE := $(APPSGLUE)
17 include templates/app.mk
19 endif