]> git.ipfire.org Git - thirdparty/squid.git/blob - src/Common.am
Merge from trunk
[thirdparty/squid.git] / src / Common.am
1 ## Settings common to many Squid Makefiles
2
3 ## This file should be included first in all src/subdir/Makefile.am
4 ## so it must not contain stuff specific to or bad for some subdirectories.
5
6 ## TODO: make this set by configure?
7 AM_CFLAGS = $(SQUID_CFLAGS)
8 AM_CXXFLAGS = $(SQUID_CXXFLAGS)
9 DEFS = @DEFS@
10
11 ## so that others can always use += for these variables
12 CLEANFILES =
13 check_PROGRAMS =
14 TESTS =
15
16 INCLUDES = \
17 -I$(top_srcdir) \
18 -I$(top_srcdir)/include \
19 -I$(top_srcdir)/src \
20 -I$(top_builddir)/include \
21 $(SQUID_CPPUNIT_INC)
22
23 ## Kerberos headers require their include path.
24 ## Because we use libcompat for comm_err.h header protections ...
25 INCLUDES += $(KRB5INCS)
26
27 ## make all compiled sources depend on generated files
28 ## XXX: Do we really need this? Does auto-dependency tracking work?
29 $(OBJS): $(top_srcdir)/include/version.h $(top_builddir)/include/autoconf.h
30
31 ## Because compatibility is almost universal. And the link order is important.
32 ## NP: libmisc util.cc depends on rint from math library
33 COMPAT_LIB = \
34 -L$(top_builddir)/lib -lmiscutil \
35 $(top_builddir)/compat/libcompat.la
36
37 ## Some helpers are written in Perl and need the local shell defined properly
38 subst_perlshell = sed -e 's,[@]PERL[@],$(PERL),g' <$(srcdir)/$@.pl.in >$@ || ($(RM) -f $@ ; exit 1)