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