diff options
author | neonloop | 2021-10-20 14:54:27 +0000 |
---|---|---|
committer | neonloop | 2021-10-20 14:54:27 +0000 |
commit | ea1947ffcc606d757357398b24e74a3f4ecefa07 (patch) | |
tree | 2031b8d4fc4c61063c710a7148378f57e662efbd /modules/mod_file/Makefile.am | |
download | bennugd-ea1947ffcc606d757357398b24e74a3f4ecefa07.tar.gz bennugd-ea1947ffcc606d757357398b24e74a3f4ecefa07.tar.bz2 bennugd-ea1947ffcc606d757357398b24e74a3f4ecefa07.zip |
Initial commit from steward-fu releasemain
Diffstat (limited to 'modules/mod_file/Makefile.am')
-rw-r--r-- | modules/mod_file/Makefile.am | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/mod_file/Makefile.am b/modules/mod_file/Makefile.am new file mode 100644 index 0000000..5f1253f --- /dev/null +++ b/modules/mod_file/Makefile.am @@ -0,0 +1,15 @@ +## Process this file with automake to produce Makefile.in + +#AUTOMAKE_OPTIONS = no-dependencies foreign + +lib_LTLIBRARIES = libmod_file.la + +libmod_file_la_SOURCES = mod_file.c +libmod_file_la_CFLAGS = $(COMMON_CFLAGS) -I$(BGD_PATH)/include +libmod_file_la_LDFLAGS = -s -module -no-undefined -avoid-version +libmod_file_la_LIBADD = $(COMMON_LDFLAGS) -L$(BGD_PATH)/bgdrtm/src/.libs -lbgdrtm + +## Make sure these will be cleaned even when they're not built by +## default. +CLEANFILES = libmod_file.la + |