diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-13 16:20:42 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-13 16:20:42 +0100 |
commit | d14582a1d92e036780166a0b5ec0494d7353cc75 (patch) | |
tree | b14c7d52f8bdbe511a2efb25aae45a565db202d0 /common.mk | |
parent | bde446bcc08483707dc20a0bbf85ad70bc9d1496 (diff) |
Implemented and tested managed FCGI application start, separated out process check functions to libreichwein
Diffstat (limited to 'common.mk')
-rw-r--r-- | common.mk | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -100,3 +100,7 @@ endif SRC_ROOT=$(shell echo $(MAKEFILE_LIST) | tr " " "\n" | grep common.mk | sed -e 's/\([^ ]*\)common.mk/\1/g') VERSION=$(shell dpkg-parsechangelog --show-field Version --file $(SRC_ROOT)/debian/changelog) CXXFLAGS+=-DVERSION=\"$(VERSION)\" + +LIBS+=$(shell pkg-config --libs fmt) +CXXFLAGS+=$(shell pkg-config --cflags fmt) + |