Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / am-utils / dist / amq / Makefile.am
blob947d8051054a8ef22ff76ccdb9e2d566cda66bf9
1 ## Process this file with automake to produce Makefile.in
3 # Package: am-utils
4 # Level: Makefile for amq/ directory
5 # Author: Erez Zadok
7 sbin_PROGRAMS = amq
8 bin_PROGRAMS = pawd
10 # man pages
11 man_MANS = amq.8 pawd.1
13 # headers this depends on, not to be installed
14 noinst_HEADERS = amq.h
16 amq_SOURCES = amq.c amq_clnt.c amq_xdr.c
17 pawd_SOURCES = amq_clnt.c amq_xdr.c pawd.c
19 LDADD = ../libamu/libamu.la
21 INCLUDES = -I$(top_srcdir)/include
23 # allow users to add their own flags via "configure --enable-am-flags=ARG"
24 AMU_CFLAGS = @AMU_CFLAGS@
25 AM_CFLAGS = @CFLAGS@ $(AMU_CFLAGS)
27 # additional files to distribute and clean
28 EXTRA_DIST = $(man_MANS)
30 # dependencies
31 $(PROGRAMS): $(LDADD)
32 $(amq_OBJECTS) $(pawd_OBJECTS):                 \
33         ../config.h                             \
34         ../aux_conf.h                           \
35         $(top_srcdir)/include/am_compat.h       \
36         $(top_srcdir)/include/am_defs.h         \
37         $(top_srcdir)/include/am_utils.h        \
38         $(top_srcdir)/include/am_xdr_func.h     \
39         $(top_srcdir)/include/amq_defs.h        \
40         @AMU_NFS_PROT_HEADER@                   \
41         $(noinst_HEADERS)