1 # Makefile for Amanda client programs.
3 include $(top_srcdir)/config/automake/vars.am
4 include $(top_srcdir)/config/automake/installperms.am
5 include $(top_srcdir)/config/automake/precompile.am
7 INCLUDES = -I$(top_builddir)/common-src \
8 -I$(top_srcdir)/common-src \
11 AM_CFLAGS = $(AMANDA_WARNING_CFLAGS)
12 AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS) $(AS_NEEDED_FLAGS)
15 LINTFLAGS=$(AMLINTFLAGS)
17 amlib_LTLIBRARIES = libamandad.la
19 amlibexec_PROGRAMS = amandad
21 libamandad_la_SOURCES= amandad_util.c
22 libamandad_la_LDFLAGS = -release $(VERSION) $(AS_NEEDED_FLAGS)
23 libamandad_la_LIBADD = ../common-src/libamanda.la
25 noinst_HEADERS = amandad.h
28 # Because libamanda includes routines (e.g. regex) provided by some system
29 # libraries, and because of the way libtool sets up the command line, we
30 # need to list libamanda twice here, first to override the system library
31 # routines, and second to pick up any references in the other libraries.
34 LDADD = ../common-src/libamanda.la \
36 ../common-src/libamanda.la \
40 @ for p in $(amlibexec_PROGRAMS); do \
41 p=`basename $$p $(EXEEXT)`; \
42 f="$$p.c $(libamandad_la_SOURCES)"; \
43 (cd ../common-src; make listlibsrc); \
44 f="$$f "`cat ../common-src/listlibsrc.output`; \
45 (cd ../server-src; make listlibsrc); \
46 f="$$f "`cat ../server-src/listlibsrc.output`; \
48 $(LINT) $(LINTFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(top_builddir)/config \
50 if [ $$? -ne 0 ]; then \