Forgot to put src/Makefile.am in source control, lol. Fixes #13.

This commit is contained in:
Sam Hocevar 2017-11-28 09:25:38 +01:00
parent 9d140d8f87
commit a37e13c910

27
src/Makefile.am Normal file
View File

@ -0,0 +1,27 @@
EXTRA_DIST = parse.peg getopt.c getopt.h
sbin_PROGRAMS = ../rinetd
___rinetd_SOURCES = rinetd.c rinetd.h \
parse.c parse.h \
match.c match.h \
net.c net.h \
types.h
BUILT_SOURCES = parse.c
# If peg/leg is available, regenerate parse.h
parse.c: parse.peg
if which leg >/dev/null 2>&1; then leg -o $@ $^; else touch $@; fi
# If roffit is available, regenerate index.html
index.html: rinetd.8
if which roffit >/dev/null 2>&1; then roffit < $^ > $@; else touch $@; fi
# _POSIX_C_SOURCE is for SA_RESTART and others
# _XOPEN_SOURCE is for struct sigaction
# _GNU_SOURCE is for h_errno and gethostbyname-related macros
___rinetd_CFLAGS = -std=c99 \
-D_XOPEN_SOURCE -D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L \
-Wall -Wextra -Wwrite-strings