NetBSD/dist/am-utils/fixmount/Makefile.am
dogcow fda6698809 Import of am-utils-6.0.3 virgin source, with the following changes:
"$Id: blah$" => "Id: blah" (as well as for $Header:$) for all files
 "$NetBSD: $" added to the top of all .c and .h files
2000-06-07 00:52:18 +00:00

41 lines
1010 B
Makefile

## 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
INCLUDES = -I$(top_srcdir)/include
# allow users to add their own flags via "configure --enable-am-flags=ARG"
AMU_CFLAGS = @AMU_CFLAGS@
CFLAGS = @CFLAGS@ $(AMU_CFLAGS)
# additional files to distribute and clean
EXTRA_DIST = $(man_MANS)
DISTCLEANFILES = check_mount.c
# dependencies
$(PROGRAMS): $(LDADD)
$(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)