added some code
[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         crypt_base64.c \
17         crypt_keypacker.c \
18         crypt_rsa.c \
19         crypt_md5.c \
20         ircd_config.c \
21         ircd_sock.c \
22         ircd_client.c \
23         ircd_parse.c \
24         ircd_auth.c \
25         ircd_users.c \
26         cmd_nick.c \
27         cmd_user.c \
28         main.c
29