~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to compat/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2010-05-04 11:15:49 UTC
  • mfrom: (1.3.1 upstream)
  • mto: (20.3.1 squeeze) (21.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20100504111549-1apjh2g5sndki4te
Tags: upstream-3.1.3
ImportĀ upstreamĀ versionĀ 3.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
#  Makefile for the Squid Portability Library
 
3
#
 
4
 
 
5
include $(top_srcdir)/src/Common.am
 
6
 
 
7
 
 
8
# Ideally this would be 100% inline functions and macro wrappers.
 
9
 
 
10
# Port Specific Configurations
 
11
 
 
12
noinst_LTLIBRARIES = libcompat.la
 
13
 
 
14
libcompat_la_SOURCES = \
 
15
        assert.h \
 
16
        compat.h \
 
17
        compat_shared.h \
 
18
        fdsetsize.h \
 
19
        osdetect.h \
 
20
        stdvarargs.h \
 
21
        valgrind.h \
 
22
        \
 
23
        os/aix.h \
 
24
        os/dragonfly.h \
 
25
        os/freebsd.h \
 
26
        os/hpux.h \
 
27
        os/linux.h \
 
28
        os/mswin.h \
 
29
        os/next.h \
 
30
        os/openbsd.h \
 
31
        os/os2.h \
 
32
        os/qnx.h \
 
33
        os/sgi.h \
 
34
        os/solaris.h \
 
35
        os/sunos.h \
 
36
        os/windows.h \
 
37
        \
 
38
        assert.cc \
 
39
        compat.cc \
 
40
        GnuRegex.h \
 
41
        GnuRegex.c
 
42
 
 
43
check_PROGRAMS += testPreCompiler
 
44
TESTS += testPreCompiler
 
45
 
 
46
testPreCompiler_SOURCES= \
 
47
        testPreCompiler.h \
 
48
        testPreCompiler.cc \
 
49
        $(top_srcdir)/src/tests/testMain.cc
 
50
testPreCompiler_LDADD= $(SQUID_CPPUNIT_LA) $(SQUID_CPPUNIT_LIBS)
 
51
testPreCompiler_LDFLAGS=
 
52
 
 
53
# os/ subdir prevents us using src/TestHeaders.am
 
54
#
 
55
TESTS += testHeaders
 
56
 
 
57
## Special Universal .h dependency test script
 
58
## aborts if error encountered
 
59
testHeaders: $(srcdir)/*.h $(srcdir)/os/*.h
 
60
        $(SHELL) $(top_srcdir)/test-suite/testheaders.sh "$(CXXCOMPILE)" "$(srcdir)" || exit 1
 
61
        $(SHELL) $(top_srcdir)/test-suite/testheaders.sh "$(CXXCOMPILE)" "$(srcdir)/os" || exit 1
 
62
 
 
63
CLEANFILES += testHeaders
 
64
 
 
65
.PHONY: testHeaders