Move src files to /src/.

This commit is contained in:
Auke Kok
2019-01-23 15:55:45 -08:00
parent 6545cb0d33
commit 0a0a912c70
8 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ depcomp
install-sh
missing
tallow
tallow-*.tar.gz
tallow-*.tar.*
tallow-*/
*.o
tallow.service
+6 -1
View File
@@ -10,7 +10,12 @@ systemdsystemunitdir = @SYSTEMD_SYSTEMUNITDIR@
systemdsystemunit_DATA = data/tallow.service
sbin_PROGRAMS = tallow
tallow_SOURCES = tallow.c json.c json.h data.c data.h
tallow_SOURCES = \
src/tallow.c \
src/json.c \
src/json.h \
src/data.c \
src/data.h
tallow_LDADD = $(JSON_C_LIBS) $(PCRE_LIBS) $(LIBSYSTEMD_LIBS)
pkgdata_DATA = data/sshd.json
+2 -1
View File
@@ -3,7 +3,8 @@
AC_PREREQ([2.64])
AC_INIT([tallow], [16], [auke-jan.h.kok@intel.com])
AM_INIT_AUTOMAKE([foreign])
AM_INIT_AUTOMAKE([foreign -Wall -Werror -Wno-portability silent-rules subdir-objects color-tests
no-dist-gzip dist-xz])
AC_CONFIG_FILES([Makefile])
# Checks for programs.
View File
View File
View File
View File
View File