0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 10:08:56 +02:00
construct/include/ircd/Makefile.am

72 lines
1.3 KiB
Makefile
Raw Normal View History

AUTOMAKE_OPTIONS = foreign
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
@ROCKSDB_CPPFLAGS@ \
@JS_CPPFLAGS@ \
@BOOST_CPPFLAGS@ \
@SSL_CPPFLAGS@ \
@CRYPTO_CPPFLAGS@ \
@SODIUM_CPPFLAGS@ \
@MAGIC_CPPFLAGS@ \
@SNAPPY_CPPFLAGS@ \
@LZ4_CPPFLAGS@ \
@Z_CPPFLAGS@ \
@MALLOC_CPPFLAGS@ \
@EXTRA_CPPFLAGS@ \
2017-09-08 11:43:23 +02:00
###
AM_CXXFLAGS = \
@EXTRA_CXXFLAGS@ \
###
if GCC
2017-11-30 20:44:23 +01:00
AM_CXXFLAGS += \
-fpch-deps \
###
endif
if DEBUG
if GCC
2017-11-30 20:44:23 +01:00
AM_CXXFLAGS += \
-fmax-errors=2 \
###
endif
endif
if BUILD_PCH
2017-11-30 20:44:23 +01:00
BUILT_SOURCES = \
ircd.h.gch \
ircd.pic.h.gch \
2019-04-21 00:41:11 +02:00
spirit.h.gch \
2017-11-30 20:44:23 +01:00
###
endif
if GCC
if LOWMEM_COMPILE
LOWMEM_FLAGS= --param ggc-min-expand=1
endif
endif
DEPS = *.h */*.h */*/*.h */*/*/*.h
nobase_include_HEADERS = $(DEPS)
noinst_HEADERS = *.gch
ircd.h.gch: $(DEPS)
$(CXX) $(CXXFLAGS) $(AM_CXXFLAGS) -o ircd.h.gch $(DEFS) $(CPPFLAGS) $(AM_CPPFLAGS) ircd.h
ircd.pic.h.gch: $(DEPS)
cp ircd.h ircd.pic.h
$(CXX) $(CXXFLAGS) $(AM_CXXFLAGS) -fPIC -o ircd.pic.h.gch $(DEFS) $(CPPFLAGS) $(AM_CPPFLAGS) -DPIC ircd.pic.h
spirit.h.gch: $(DEPS)
$(CXX) $(CXXFLAGS) $(LOWMEM_FLAGS) $(AM_CXXFLAGS) -fPIC -o spirit.h.gch $(DEFS) $(CPPFLAGS) $(AM_CPPFLAGS) -DPIC -include ircd.pic.h spirit.h
2019-04-21 00:41:11 +02:00
clean-local:
rm -f ircd.h.gch
rm -f ircd.pic.h
rm -f ircd.pic.h.gch
2019-04-21 00:41:11 +02:00
rm -f spirit.h.gch
rm -f *.gch.tmp