use the -newos toolchain even if -elf is present.
[newos.git] / apps / inputd / makefile
blob9139ce1071ddab2a2968076fb3ac8802c7425b5b
1 # app makefile
2 MY_TARGETDIR := $(APPS_BUILD_DIR)/inputd
3 MY_SRCDIR := $(APPS_DIR)/inputd
4 MY_TARGET := $(MY_TARGETDIR)/inputd
5 ifeq ($(call FINDINLIST,$(MY_TARGET),$(ALL)),1)
7 MY_SRCS := \
8 InputDevice.cpp \
9 InputServer.cpp \
10 KeyboardDevice.cpp \
11 main.cpp \
12 PS2Device.cpp
14 MY_INCLUDES := $(STDINCLUDE)
15 MY_CFLAGS := $(USER_CFLAGS)
16 MY_LIBS := -lc -lnewos -lsupc++
17 MY_LIBPATHS :=
18 MY_DEPS :=
19 MY_GLUE := $(APPSGLUE)
21 include templates/app.mk
23 endif