aboutsummaryrefslogtreecommitdiff
path: root/fixmount/Makefile.am
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2016-08-31 00:08:49 +0000
committerCy Schubert <cy@FreeBSD.org>2016-08-31 00:08:49 +0000
commitca57057f598bfc7119f79f71bf38ec88244ab396 (patch)
tree051f78ef258707b493cc7cb21569b6949915f6c7 /fixmount/Makefile.am
parente66b16bf080ead1c51f321eaf56710c771778706 (diff)
Import am-utils 6.2,vendor/amd/6.2vendor/amd
Suggested by: pfg@ Obtained from: ftp://ftp.am-utils.org/pub/am-utils/
Notes
Notes: svn path=/vendor/amd/dist/; revision=305100 svn path=/vendor/amd/6.2/; revision=305101; tag=vendor/amd/6.2
Diffstat (limited to 'fixmount/Makefile.am')
-rw-r--r--fixmount/Makefile.am40
1 files changed, 40 insertions, 0 deletions
diff --git a/fixmount/Makefile.am b/fixmount/Makefile.am
new file mode 100644
index 000000000000..7f51c5798ff4
--- /dev/null
+++ b/fixmount/Makefile.am
@@ -0,0 +1,40 @@
+## Process this file with automake to produce Makefile.in
+
+# Package: am-utils
+# Level: Makefile for fixmount/ directory
+# Author: Erez Zadok
+
+sbin_PROGRAMS = fixmount
+
+# man pages
+man_MANS = fixmount.8
+
+# headers this depends on, not to be installed
+#noinst_HEADERS =
+
+fixmount_SOURCES = fixmount.c
+EXTRA_fixmount_OBJECTS = check_mount.o
+LDADD = $(EXTRA_fixmount_OBJECTS) ../libamu/libamu.la
+
+AM_CPPFLAGS = -I$(top_srcdir)/include
+
+# allow users to add their own flags via "configure --enable-am-flags=ARG"
+AMU_CFLAGS = @AMU_CFLAGS@
+AM_CFLAGS = $(AMU_CFLAGS)
+
+# additional files to distribute and clean
+EXTRA_DIST = $(man_MANS)
+DISTCLEANFILES = check_mount.c
+
+# dependencies
+$(PROGRAMS): $(LDADD)
+$(fixmount_OBJECTS) $(EXTRA_fixmount_OBJECTS): \
+ ../config.h \
+ ../aux_conf.h \
+ $(top_srcdir)/include/am_compat.h \
+ $(top_srcdir)/include/am_defs.h \
+ $(top_srcdir)/include/am_utils.h \
+ $(top_srcdir)/include/am_xdr_func.h \
+ $(top_srcdir)/include/amq_defs.h \
+ @AMU_NFS_PROT_HEADER@ \
+ $(noinst_HEADERS)