Start of a little irc app, doesn't really work right now and not in the build.
[newos.git] / apps / irc / makefile
blob3c450202676cf750c63bb4c664dad0b459f32656
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 ircreader.o
11 MY_INCLUDES := $(STDINCLUDE)
12 MY_CFLAGS := $(USER_CFLAGS)
13 MY_LIBS := $(ULIBS)
14 MY_LIBPATHS :=
15 MY_DEPS :=
16 MY_GLUE := $(APPSGLUE)
18 include templates/app.mk
20 endif