sic/Makefile.am

37 lines
1.1 KiB
Makefile
Raw Normal View History

2013-11-07 04:27:40 +01:00
## Additional flags to pass to aclocal when it is invoked automatically at
## make time. The ${ACLOCAL_FLAGS} variable is picked up from the environment
## to provide a way for the user to supply additional arguments.
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS}
2013-11-21 20:59:50 +01:00
AM_CXXFLAGS = -std=c++11
2013-11-07 04:45:58 +01:00
bin_PROGRAMS=siccc
2013-11-07 04:27:40 +01:00
2013-11-22 14:03:01 +01:00
BUILT_SOURCES=src/Foohash.H
2013-11-22 14:17:48 +01:00
siccc_SOURCES = src/Foohash.H src/options.c src/routerin.cc src/sicmain.cc mongoose/mongoose.c
siccc_CFLAGS =
2013-11-22 00:02:23 +01:00
siccc_CXXFLAGS = ${AM_CXXFLAGS} -DDEBUG -ggdb -I./mongoose/ -Darschlecken
2013-11-21 20:43:02 +01:00
siccc_LDFLAGS = -ldl -pthread
2013-11-22 14:17:48 +01:00
EXTRA_DIST= static/* src/eventlist.txt
2013-11-22 14:03:01 +01:00
src/Foohash.H: src/eventlist.txt
gperf -LC++ -ZFoohash -E < $< > $@
2013-11-07 04:27:40 +01:00
options.c: options.ggo
options.h: options.ggo
.ggo.c:
gengetopt -F ${@:%.c=%} < $<
## Define an independent executable script for inclusion in the distribution
## archive. It will not be installed on an end user's system, however.
#dist_noinst_SCRIPTS = autogen.sh
dist-hook: ChangeLog
README: README.md
ln -s
ChangeLog: configure.ac README.md
git log --stat --name-only --date=short --abbrev-commit > ChangeLog