Fixed required file 'src/Makefile.in' not found

This commit is contained in:
ZiHang Gao 2017-11-28 15:51:03 +08:00 committed by GitHub
parent 9d140d8f87
commit bd34b7db76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
src/Makefile.am Normal file
View File

@ -0,0 +1,16 @@
sbin_PROGRAMS = rinetd
rinetd_SOURCES = rinetd.c rinetd.h parse.c parse.h match.c match.h net.c net.h
GENERATED_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
# _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 -I.
# This is for Travis CI; we dont have a testsuite yet.
test: