0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-10 14:08:56 +02:00
construct/include/ircd/Makefile.am
Jason Volk 110610f774 ircd:Ⓜ️ Tweak symbol related linkflags for library.
Fix $EXTRA_ flags placement; improve Makefile formatting.
2022-06-24 21:31:05 -07:00

115 lines
2.6 KiB
Makefile

AUTOMAKE_OPTIONS = foreign
AM_CPPFLAGS =#
AM_CPPFLAGS += -I$(top_srcdir)/include
AM_CXXFLAGS =#
AM_CXXFLAGS += -x c++-header
if GCC
AM_CXXFLAGS += -fpch-deps
endif
if CLANG
AM_CPPFLAGS += -fpch-preprocess
endif
if CLANG10
AM_CXXFLAGS += -fpch-validate-input-files-content
endif
if CLANG11
AM_CXXFLAGS += -fpch-instantiate-templates
endif
if GCC
if LOWMEM_COMPILE
LOWMEM_FLAGS= --param ggc-min-expand=1
endif
endif
AM_CPPFLAGS += $(EXTRA_CPPFLAGS)
AM_CXXFLAGS += $(EXTRA_CXXFLAGS)
# includedir = @includedir@/$(PACKAGE_TARNAME)
includedir = @includedir@/ircd
nobase_include_HEADERS = $(DEPS)
if BUILD_PCH # --- Actions when Precompiled headers enabled
noinst_HEADERS = *.gch
BUILT_SOURCES = \
ircd.h.gch \
ircd.pic.h.gch \
spirit.h.gch \
asio.h.gch \
matrix.h.gch \
matrix.pic.h.gch \
###
ircd.h.gch: ircd.h
$(CXX) $(AM_CXXFLAGS) $(CXXFLAGS) -o ircd.h.gch $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) ircd.h
ircd.pic.h.gch: ircd.h
cp ircd.h ircd.pic.h
$(CXX) $(AM_CXXFLAGS) $(CXXFLAGS) -fPIC -o ircd.pic.h.gch $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) -DPIC ircd.pic.h
matrix.h.gch: ircd.h matrix.h m/*.h m/*/*.h
$(CXX) $(AM_CXXFLAGS) $(CXXFLAGS) -o matrix.h.gch $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) matrix.h
matrix.pic.h.gch: ircd.h matrix.h m/*.h m/*/*.h
cp matrix.h matrix.pic.h
$(CXX) $(AM_CXXFLAGS) $(CXXFLAGS) -fPIC -o matrix.pic.h.gch $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) -DPIC matrix.pic.h
spirit.h.gch: ircd.h spirit.h spirit/*.h
$(CXX) $(AM_CXXFLAGS) $(CXXFLAGS) -fPIC -o spirit.h.gch $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) -DPIC spirit.h
spirit.h.gch: \
AM_CXXFLAGS += @BOOST_CPPFLAGS@ $(LOWMEM_FLAGS)
asio.h.gch: ircd.h asio.h net/asio.h ctx/continuation.h
$(CXX) $(AM_CXXFLAGS) $(CXXFLAGS) -fPIC -o asio.h.gch $(DEFS) $(AM_CPPFLAGS) $(CPPFLAGS) -DPIC asio.h
asio.h.gch: \
AM_CPPFLAGS += @BOOST_CPPFLAGS@ @SSL_CPPFLAGS@ @CRYPTO_CPPFLAGS@
else # --- Actions without Precompiled Headers enabled
BUILT_SOURCES = \
ircd.pic.h \
matrix.pic.h \
###
ircd.pic.h: ircd.h
cp ircd.h ircd.pic.h
matrix.pic.h: matrix.h
cp matrix.h matrix.pic.h
endif # --- /BUILD_PCH
#
# Clean / Install
#
clean-local:
rm -f *.h.gch
rm -f *.gch.tmp
rm -f ircd.pic.h
rm -f matrix.pic.h
install-mkdirs: $(DEPS) $(BUILT_SOURCES)
-@if test ! -d $(DESTDIR)$(includedir); then \
echo "mkdir -p $(DESTDIR)$(includedir)"; \
mkdir -p $(DESTDIR)$(includedir); \
fi
install: install-mkdirs
@echo "ircd: installing headers"
@for i in $(srcdir)/*; do \
if [[ "$$i" != "./Makefile"* ]] && [[ "$$i" != *.h.gch ]]; then \
echo "installing $$i to $(DESTDIR)$(includedir)"; \
cp -u -r $$i $(DESTDIR)$(includedir); \
fi \
done