use the -newos toolchain even if -elf is present.
[newos.git] / apps / window_server / makefile
blob6616e057a0e918e57c5df43c8051506e186d2c4c
1 # app makefile
2 MY_TARGETDIR := $(APPS_BUILD_DIR)/window_server
3 MY_SRCDIR := $(APPS_DIR)/window_server
4 MY_TARGET := $(MY_TARGETDIR)/window_server
5 ifeq ($(call FINDINLIST,$(MY_TARGET),$(ALL)),1)
7 MY_SRCS := \
8 main.cpp \
9 PS2Mouse.cpp \
10 Renderer_16bpp.cpp \
11 Renderer_vesa.cpp \
12 Region.cpp \
13 GraphicsContext.cpp \
14 Window.cpp \
15 WindowManager.cpp
17 MY_INCLUDES := $(STDINCLUDE)
18 MY_CFLAGS := $(USER_CFLAGS)
19 MY_LIBS := -lc -lwin -lnewos -lsupc++
20 MY_LIBPATHS :=
21 MY_DEPS :=
22 MY_GLUE := $(APPSGLUE)
24 include templates/app.mk
26 endif