added a new header file to encapsulate compiler-specific stuff.
[newos.git] / apps / test_output / makefile
blob9e3668e8dd8d5475448c00680ecf16a3257ad3ad
1 # app makefile
3 MY_TARGETDIR := $(APPS_BUILD_DIR)/test_output
4 MY_SRCDIR := $(APPS_DIR)/test_output
5 MY_TARGET := $(MY_TARGETDIR)/test_output
6 ifeq ($(call FINDINLIST,$(MY_TARGET),$(ALL)),1)
9 MY_OBJS := \
10 test_output.o
13 MY_INCLUDES := $(STDINCLUDE)
14 MY_CFLAGS := $(USER_CFLAGS)
15 MY_LIBS := $(ULIBS)
16 MY_LIBPATHS :=
17 MY_DEPS :=
18 MY_GLUE := $(APPSGLUE)
20 include templates/app.mk
22 endif