added a new header file to encapsulate compiler-specific stuff.
[newos.git] / apps / vmtest / makefile
blobc3af44c1e49388a12bc18636cb1289d85e196033
1 # app makefile
2 MY_TARGETDIR := $(APPS_BUILD_DIR)/vmtest
3 MY_SRCDIR := $(APPS_DIR)/vmtest
4 MY_TARGET := $(MY_TARGETDIR)/vmtest
5 ifeq ($(call FINDINLIST,$(MY_TARGET),$(ALL)),1)
7 MY_OBJS := \
8 main.o
10 MY_INCLUDES := $(STDINCLUDE)
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