added config parser & incoming connection handler
[NextIRCd.git] / src / Makefile.am
1 ##Process this file with automake to create Makefile.in
2 ACLOCAL_AMFLAGS = -I m4
3 SUBDIRS = IOHandler IOHandler++ IOHandler_test
4
5 noinst_PROGRAMS = nextircd
6 nextircd_LDADD = IOHandler/libiohandler.la
7
8 BUILT_SOURCES = version.c
9 version.c: checkversion
10 checkversion:
11         ./version.sh
12
13 nextircd_SOURCES = \
14         version.c \
15         tools.c \
16         config.c \
17         ircd_sock.c \
18         ircd_client.c \
19         main.c
20