build: fix circular header inclusion with other packages
[platform/upstream/curl.git] / src / Makefile.am
1 #***************************************************************************
2 #                                  _   _ ____  _
3 #  Project                     ___| | | |  _ \| |
4 #                             / __| | | | |_) | |
5 #                            | (__| |_| |  _ <| |___
6 #                             \___|\___/|_| \_\_____|
7 #
8 # Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
9 #
10 # This software is licensed as described in the file COPYING, which
11 # you should have received as part of this distribution. The terms
12 # are also available at http://curl.haxx.se/docs/copyright.html.
13 #
14 # You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 # copies of the Software, and permit persons to whom the Software is
16 # furnished to do so, under the terms of the COPYING file.
17 #
18 # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 # KIND, either express or implied.
20 #
21 ###########################################################################
22 AUTOMAKE_OPTIONS = foreign nostdinc
23
24 # Specify our include paths here, and do it relative to $(top_srcdir) and
25 # $(top_builddir), to ensure that these paths which belong to the library
26 # being currently built and tested are searched before the library which
27 # might possibly already be installed in the system.
28 #
29 # $(top_builddir)/include/curl for generated curlbuild.h included from curl.h
30 # $(top_builddir)/include for generated curlbuild.h inc. from lib/curl_setup.h
31 # $(top_srcdir)/include is for libcurl's external include files
32 # $(top_builddir)/lib is for libcurl's generated lib/curl_config.h file
33 # $(top_builddir)/src is for curl's generated src/curl_config.h file
34 # $(top_srcdir)/lib for libcurl's lib/curl_setup.h and other "borrowed" files
35 # $(top_srcdir)/src is for curl's src/tool_setup.h and "curl-private" files
36
37 AM_CPPFLAGS = -I$(top_builddir)/include/curl \
38               -I$(top_builddir)/include      \
39               -I$(top_srcdir)/include        \
40               -I$(top_builddir)/lib          \
41               -I$(top_builddir)/src          \
42               -I$(top_srcdir)/lib            \
43               -I$(top_srcdir)/src
44
45 bin_PROGRAMS = curl
46
47 # Mostly for Windows build targets, when using static libcurl
48 if USE_CPPFLAG_CURL_STATICLIB
49 AM_CPPFLAGS += -DCURL_STATICLIB
50 endif
51
52 include Makefile.inc
53
54 # This might hold -Werror
55 CFLAGS += @CURL_CFLAG_EXTRAS@
56
57 # Prevent LIBS from being used for all link targets
58 LIBS = $(BLANK_AT_MAKETIME)
59
60 if USE_EXPLICIT_LIB_DEPS
61 curl_LDADD = $(top_builddir)/lib/libcurl.la @LIBMETALINK_LIBS@ @LIBCURL_LIBS@
62 else
63 curl_LDADD = $(top_builddir)/lib/libcurl.la @LIBMETALINK_LIBS@ @ZLIB_LIBS@ @CURL_NETWORK_AND_TIME_LIBS@
64 endif
65
66 curl_LDFLAGS = @LIBMETALINK_LDFLAGS@
67 curl_CPPFLAGS = $(AM_CPPFLAGS) $(LIBMETALINK_CPPFLAGS)
68 curl_DEPENDENCIES = $(top_builddir)/lib/libcurl.la
69
70 BUILT_SOURCES = tool_hugehelp.c
71 CLEANFILES = tool_hugehelp.c
72 # Use the C locale to ensure that only ASCII characters appear in the
73 # embedded text.
74 NROFF=env LC_ALL=C @NROFF@ @MANOPT@ # figured out by the configure script
75
76 EXTRA_DIST = mkhelp.pl makefile.dj Makefile.vc6 Makefile.b32 Makefile.m32 \
77         macos/curl.mcp.xml.sit.hqx                                        \
78         macos/MACINSTALL.TXT macos/src/curl_GUSIConfig.cpp vc6curlsrc.dsp \
79         macos/src/macos_main.cpp makefile.amiga curl.rc                   \
80         Makefile.netware Makefile.inc Makefile.Watcom vc6curlsrc.dsw      \
81         CMakeLists.txt
82
83 MANPAGE=$(top_srcdir)/docs/curl.1
84 README=$(top_srcdir)/docs/MANUAL
85 MKHELP=$(top_srcdir)/src/mkhelp.pl
86 HUGE=tool_hugehelp.c
87
88 if USE_MANUAL
89 # Here are the stuff to create a built-in manual
90
91 if HAVE_LIBZ
92 # This generates the tool_hugehelp.c file in both uncompressed and
93 # compressed formats
94 $(HUGE): $(README) $(MANPAGE)  mkhelp.pl
95         echo '#include "tool_setup.h"' > $(HUGE)
96         echo '#ifndef HAVE_LIBZ' >> $(HUGE)
97         $(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) $(README) >> $(HUGE)
98         echo '#else' >> $(HUGE)
99         $(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) -c $(README) >> $(HUGE)
100         echo '#endif /* HAVE_LIBZ */' >> $(HUGE)
101 else # HAVE_LIBZ
102 # This generates the tool_hugehelp.c file uncompressed only
103 $(HUGE): $(README) $(MANPAGE)  mkhelp.pl
104         echo '#include "tool_setup.h"' > $(HUGE)
105         $(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) $(README) >> $(HUGE)
106 endif
107
108 else # USE_MANUAL
109 # built-in manual has been disabled, make a blank file
110 $(HUGE):
111         echo "/* built-in manual is disabled, blank function */" > $(HUGE)
112         echo '#include "tool_hugehelp.h"' >> $(HUGE)
113         echo "void hugehelp(void) {}" >>$(HUGE)
114 endif
115
116 # ignore tool_hugehelp.c since it is generated source code and it plays
117 # by slightly different rules!
118 checksrc:
119         @@PERL@ $(top_srcdir)/lib/checksrc.pl -D$(top_srcdir)/src -Wtool_hugehelp.c $(curl_SOURCES)
120
121 if CURLDEBUG
122 # for debug builds, we scan the sources on all regular make invokes
123 all-local: checksrc
124 endif