0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-03 02:28:55 +02:00
construct/ircd/Makefile.am
2016-09-09 16:17:02 -07:00

102 lines
2.6 KiB
Makefile

AUTOMAKE_OPTIONS = foreign
libircddir = @libdir@
# NOTE: the c++ version has a radically different API
#AM_YFLAGS = -d --language=c++
AM_YFLAGS = -d
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
@BOOST_CPPFLAGS@ \
-include ircd/ircd.h
if MINGW
PLATFORM_LDFLAGS = -Wl,--enable-runtime-pseudo-reloc -export-symbols-regex '*'
endif
AM_LDFLAGS = \
-export-dynamic \
-avoid-version \
-no-undefined \
$(PLATFORM_LDFLAGS)
AM_LDFLAGS += \
-L$(top_srcdir)/rb \
@BOOST_LDFLAGS@
BUILT_SOURCES = ircd_lexer.cc ircd_parser.cc
libircd_LTLIBRARIES = libircd.la
libircd_la_LIBADD = \
-lrb \
@BOOST_LIBS@
libircd_la_SOURCES = \
authproc.cc \
bandbi.cc \
cache.cc \
cache_serv.cc \
capability.cc \
channel.cc \
chmode.cc \
class.cc \
client.cc \
client_mode.cc \
dns.cc \
exception.cc \
extban.cc \
fs.cc \
getopt.cc \
hash.cc \
hook.cc \
mask.cc \
info.cc \
ircd.cc \
ircd_lexer.cc \
ircd_parser.cc \
listener.cc \
logger.cc \
match.cc \
modules.cc \
monitor.cc \
msgbuf.cc \
newconf.cc \
operhash.cc \
packet.cc \
parse.cc \
privilege.cc \
ratelimit.cc \
reject.cc \
restart.cc \
rfc1459.cc \
s_conf.cc \
s_newconf.cc \
s_serv.cc \
s_user.cc \
send.cc \
snomask.cc \
sslproc.cc \
stringops.cc \
substitution.cc \
supported.cc \
tgchange.cc \
whowas.cc \
wsproc.cc
ircd_lexer.cc:
flex $(AM_LFLAGS) -o ircd_lexer.cc ircd_lexer.ll
ircd_parser.cc:
$(YACC) $(AM_YFLAGS) -o ircd_parser.cc ircd_parser.yy
install-data-local:
test -d $(prefix)/@logdir@ || mkdir -p $(prefix)/@logdir@
clean-local:
rm -f ircd_lexer.c ircd_lexer.cc
rm -f ircd_parser.c ircd_parser.cc
rm -f ircd_parser.h ircd_parser.hh
rm -f stack.hh