File: Makefile.am

package info (click to toggle)
am-utils 6.0.7-6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 7,728 kB
  • ctags: 8,542
  • sloc: ansic: 34,563; sh: 9,665; perl: 2,424; makefile: 776; lex: 454; yacc: 375
file content (39 lines) | stat: -rw-r--r-- 897 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
## Process this file with automake to produce Makefile.in

# Package: am-utils
# Level: Makefile for wire-test/ directory
# Author: Erez Zadok

sbin_PROGRAMS = wire-test

# man pages
man_MANS = wire-test.8

# headers this depends on, not to be installed
#noinst_HEADERS =

wire_test_SOURCES = wire-test.c

LDADD = ../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)

# dependencies
$(PROGRAMS): $(LDADD)
$(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)