Imported Upstream version 3.2.0
[debian/amanda] / amandad-src / Makefile.am
1 # Makefile for Amanda client programs.
2
3 include $(top_srcdir)/config/automake/vars.am
4 include $(top_srcdir)/config/automake/installperms.am
5 include $(top_srcdir)/config/automake/precompile.am
6
7 INCLUDES =      -I$(top_builddir)/common-src \
8                 -I$(top_srcdir)/common-src \
9                 -I$(top_srcdir)/gnulib
10
11 AM_CFLAGS = $(AMANDA_WARNING_CFLAGS)
12 AM_LDFLAGS = $(AMANDA_STATIC_LDFLAGS)
13
14 LINT=$(AMLINT)
15 LINTFLAGS=$(AMLINTFLAGS)
16
17 amlib_LTLIBRARIES =       libamandad.la
18
19 amlibexec_PROGRAMS =    amandad
20
21 libamandad_la_SOURCES= amandad_util.c
22 libamandad_la_LDFLAGS = -release $(VERSION)
23 libamandad_la_LIBADD = ../common-src/libamanda.la
24
25 noinst_HEADERS  = amandad.h
26
27 ###
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.
32 ###
33
34 LDADD = ../common-src/libamanda.la \
35         libamandad.la \
36         ../common-src/libamanda.la \
37         ../gnulib/libgnu.la
38
39 lint:
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`;                  \
47                 echo $(LINT) $$f;                                               \
48                 $(LINT) $(LINTFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(top_builddir)/config   \
49                     $(INCLUDES) $$f;                                            \
50                 if [ $$? -ne 0 ]; then                                          \
51                     exit 1;                                                     \
52                 fi;                                                             \
53         done;                                                                   \
54         exit 0
55