No empty .Rs/.Re
[netbsd-mini2440.git] / external / bsd / am-utils / dist / hlfsd / Makefile.am
blob338584b38828038bead7c8516e167a433da89bd0
1 ## Process this file with automake to produce Makefile.in
3 # Package: am-utils
4 # Level: Makefile for hlfsd/ directory
5 # Author: Erez Zadok
7 sbin_PROGRAMS = hlfsd
9 # man pages
10 man_MANS = hlfsd.8
12 # headers this depends on, not to be installed
13 noinst_HEADERS = hlfsd.h
15 hlfsd_SOURCES =         \
16         hlfsd.c         \
17         homedir.c       \
18         nfs_prot_svc.c  \
19         stubs.c
21 LDADD = ../libamu/libamu.la
23 INCLUDES = -I$(top_srcdir)/include
25 # allow users to add their own flags via "configure --enable-am-flags=ARG"
26 AMU_CFLAGS = @AMU_CFLAGS@
27 AM_CFLAGS = @CFLAGS@ $(AMU_CFLAGS)
29 # additional files to distribute and clean
30 EXTRA_DIST = $(man_MANS)
32 # dependencies
33 $(PROGRAMS): $(LDADD)
34 $(hlfsd_OBJECTS):                               \
35         ../config.h                             \
36         ../aux_conf.h                           \
37         $(top_srcdir)/include/am_compat.h       \
38         $(top_srcdir)/include/am_defs.h         \
39         $(top_srcdir)/include/am_utils.h        \
40         $(top_srcdir)/include/am_xdr_func.h     \
41         $(top_srcdir)/include/amq_defs.h        \
42         @AMU_NFS_PROT_HEADER@                   \
43         $(noinst_HEADERS)