Move all of the files in include/libc/... down to the top level include path.
[newos.git] / apps / irc / makefile
blob073619412cb3f9d50add9962fa9b9f69a0fa681e
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_OBJS := \
8 app.o \
9 ircengine.o \
10 ircreader.o \
11 term.o
13 MY_INCLUDES := $(STDINCLUDE)
14 MY_CFLAGS := $(USER_CFLAGS)
15 MY_LIBS := $(ULIBS)
16 MY_LIBPATHS :=
17 MY_DEPS :=
18 MY_GLUE := $(APPSGLUE)
20 include templates/app.mk
22 endif