use the -newos toolchain even if -elf is present.
[newos.git] / apps / static / makefile
blob0726891923205e6355984351fd259bc57e36f7c2
1 # app makefile
2 MY_TARGETDIR := $(APPS_BUILD_DIR)/static
3 MY_SRCDIR := $(APPS_DIR)/static
4 MY_TARGET := $(MY_TARGETDIR)/static
5 ifeq ($(call FINDINLIST,$(MY_TARGET),$(ALL)),1)
7 MY_SRCS := \
8 main.c
10 MY_INCLUDES := -Iinclude -Iinclude/nulibc
11 MY_CFLAGS := $(USER_CFLAGS)
12 MY_LIBS := $(LIBC_STATIC) $(APPS_BUILD_DIR)/rldtest/girlfriend.so
13 MY_LIBPATHS :=
14 MY_DEPS :=
15 MY_GLUE := $(APPSGLUE)
17 include templates/app.mk
19 endif