0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-06 00:35:34 +02:00
construct/charybdis/Makefile.am

37 lines
532 B
Makefile
Raw Normal View History

prefix = @prefix@
2016-07-20 20:55:46 +02:00
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
2016-10-11 06:28:16 +02:00
@ROCKSDB_CPPFLAGS@ \
@JS_CPPFLAGS@ \
2016-07-20 20:55:46 +02:00
@BOOST_CPPFLAGS@
AM_LDFLAGS = \
2016-11-08 01:28:12 +01:00
-dlopen self \
-Wl,-fuse-ld=gold \
-Wl,--no-undefined \
2016-11-29 16:23:38 +01:00
-Wl,--no-gnu-unique \
$(PLATFORM_LDFLAGS)
2016-07-20 20:55:46 +02:00
AM_LDFLAGS += \
-L$(top_srcdir)/ircd \
@ROCKSDB_LDFLAGS@ \
2016-10-11 06:28:16 +02:00
@JS_LDFLAGS@ \
2016-07-20 20:55:46 +02:00
@BOOST_LDFLAGS@
bin_PROGRAMS = charybdis
2016-07-20 20:55:46 +02:00
charybdis_SOURCES = \
lgetopt.cc \
2017-03-21 03:24:41 +01:00
console.cc \
2016-07-20 20:55:46 +02:00
charybdis.cc
2016-07-20 20:55:46 +02:00
charybdis_LDADD = \
-lircd \
@ROCKSDB_LIBS@ \
2016-10-11 06:28:16 +02:00
@JS_LIBS@ \
2016-11-29 16:23:38 +01:00
@BOOST_LIBS@ \
-lcrypto \
-lssl