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