74 lines
1.7 KiB
Makefile
74 lines
1.7 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
# Package: am-utils
|
|
# Level: Makefile for libamu/ directory
|
|
# Author: Erez Zadok
|
|
|
|
#noinst_LIBRARIES = libamu.a
|
|
lib_LTLIBRARIES = libamu.la
|
|
|
|
# headers this depends on, not to be installed
|
|
noinst_HEADERS = amu.h
|
|
|
|
# these sources must be included:
|
|
libamu_la_SOURCES = \
|
|
misc_rpc.c \
|
|
mount_fs.c \
|
|
mtab.c \
|
|
nfs_prot_xdr.c \
|
|
util.c \
|
|
wire.c \
|
|
xdr_func.c \
|
|
xutil.c
|
|
|
|
## no need to list other optional sources because automake will add them
|
|
## automatically.
|
|
EXTRA_DIST = memcmp.c
|
|
DISTCLEANFILES = mountutil.c mtabutil.c transputil.c umount_fs.c
|
|
|
|
# these may be added automatically by automake if needed:
|
|
# alloca.c
|
|
# clnt_sperrno.c
|
|
# hasmntopt.c
|
|
# memcmp.c (via AC_FUNC_MEMCMP)
|
|
# strcasecmp.c
|
|
# strdup.c
|
|
# strstr.c
|
|
# ualarm.c
|
|
#
|
|
# files optionally compiled:
|
|
# mountutil.c: mount utilities
|
|
# umount_fs.c: un-mount utilities
|
|
#
|
|
# files that are always compiled, but to a different path:
|
|
# mtabutil.c: mount table utilities
|
|
# transputil.c: transport (Sockets or TLI) utilities
|
|
BUILT_SOURCES = \
|
|
mountutil.c \
|
|
umount_fs.c \
|
|
mtabutil.c \
|
|
transputil.c
|
|
|
|
libamu_la_LIBADD = @LTLIBOBJS@ @LTALLOCA@
|
|
|
|
# LDFLAGS should include standard ones plus LIBTOOL ones
|
|
LDFLAGS = @LDFLAGS@ @LIBTOOL_LDFLAGS@
|
|
|
|
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)
|
|
|
|
# dependencies
|
|
$(OBJECTS) $(libamu_la_LIBADD): \
|
|
../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)
|