blob: d0a16b2b048a9f7a975b3e5a3f639ce8e5ff9511 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
## Process this file with automake to produce Makefile.in
man8_MANS = showmount.man
EXTRA_DIST = $(man8_MANS)
sbin_PROGRAMS = showmount
showmount_SOURCES = showmount.c
showmount_LDADD = ../../support/export/libexport.a \
../../support/nfs/libnfs.la \
../../support/misc/libmisc.a \
$(LIBTIRPC)
showmount_CPPFLAGS = $(AM_CPPFLAGS) $(CPPFLAGS) \
-I$(top_builddir)/support/export
MAINTAINERCLEANFILES = Makefile.in
|