use the -newos toolchain even if -elf is present.
[newos.git] / apps / consoled / makefile
blob8568f15756ba7d516a130c1e81408795fb560314
1 # app makefile
2 MY_TARGETDIR := $(APPS_BUILD_DIR)/consoled
3 MY_SRCDIR := $(APPS_DIR)/consoled
4 MY_TARGET := $(MY_TARGETDIR)/consoled
5 ifeq ($(call FINDINLIST,$(MY_TARGET),$(ALL)),1)
7 MY_SRCS := \
8 main.c \
9 keyboard_us.c
11 MY_INCLUDES := $(STDINCLUDE)
12 MY_CFLAGS := $(USER_CFLAGS)
13 MY_LIBS := -lc -lnewos -lsupc++
14 MY_LIBPATHS :=
15 MY_DEPS :=
16 MY_GLUE := $(APPSGLUE)
18 include templates/app.mk
20 endif