Andres Garcia pointed out these Makefile mistakes...
[platform/upstream/curl.git] / Makefile.am
1 #***************************************************************************
2 #                                  _   _ ____  _
3 #  Project                     ___| | | |  _ \| |
4 #                             / __| | | | |_) | |
5 #                            | (__| |_| |  _ <| |___
6 #                             \___|\___/|_| \_\_____|
7 #
8 # Copyright (C) 1998 - 2008, 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 # $Id$
22 ###########################################################################
23
24 AUTOMAKE_OPTIONS = foreign
25
26 ACLOCAL_AMFLAGS = -I m4
27
28 EXTRA_DIST = CHANGES COPYING maketgz reconf Makefile.dist curl-config.in \
29  curl-style.el sample.emacs RELEASE-NOTES buildconf buildconf.bat libcurl.pc.in
30
31 bin_SCRIPTS = curl-config
32
33 SUBDIRS = lib src
34 DIST_SUBDIRS = $(SUBDIRS) tests include packages docs
35
36 pkgconfigdir = $(libdir)/pkgconfig
37 pkgconfig_DATA = libcurl.pc
38
39 dist-hook:
40         rm -rf $(top_builddir)/tests/log
41         find $(distdir) -name "*.dist" -exec rm {} \;
42         (distit=`find $(srcdir) -name "*.dist"`; \
43         for file in $$distit; do \
44           strip=`echo $$file | sed -e s/^$(srcdir)// -e s/\.dist//`; \
45           cp $$file $(distdir)$$strip; \
46         done)
47
48 html:
49         cd docs; make html
50
51 pdf:
52         cd docs; make pdf
53
54 check: test examples
55
56 if CROSSCOMPILING
57 test-full: test
58 test-torture: test
59
60 test:
61         @echo "NOTICE: we can't run the tests when cross-compiling!"
62
63 else
64
65 test:
66         @(cd tests; $(MAKE) all quiet-test)
67
68 test-full:
69         @(cd tests; $(MAKE) all full-test)
70
71 test-torture:
72         @(cd tests; $(MAKE) all torture-test)
73
74 endif
75
76 examples:
77         @(cd docs/examples; $(MAKE) check)
78
79 #
80 # Build source and binary rpms. For rpm-3.0 and above, the ~/.rpmmacros
81 # must contain the following line:
82 # %_topdir /home/loic/local/rpm
83 # and that /home/loic/local/rpm contains the directory SOURCES, BUILD etc.
84 #
85 # cd /home/loic/local/rpm ; mkdir -p SOURCES BUILD RPMS/i386 SPECS SRPMS
86 #
87 # If additional configure flags are needed to build the package, add the
88 # following in ~/.rpmmacros
89 # %configure CFLAGS="%{optflags}" ./configure %{_target_platform} --prefix=%{_prefix} ${AM_CONFIGFLAGS}
90 # and run make rpm in the following way:
91 # AM_CONFIGFLAGS='--with-uri=/home/users/loic/local/RedHat-6.2' make rpm
92 #
93
94 rpms:
95         $(MAKE) RPMDIST=curl rpm
96         $(MAKE) RPMDIST=curl-ssl rpm
97
98 rpm:
99         RPM_TOPDIR=`rpm --showrc | $(PERL) -n -e 'print if(s/.*_topdir\s+(.*)/$$1/)'` ; \
100         cp $(srcdir)/packages/Linux/RPM/$(RPMDIST).spec $$RPM_TOPDIR/SPECS ; \
101         cp $(PACKAGE)-$(VERSION).tar.gz $$RPM_TOPDIR/SOURCES ; \
102         rpm -ba --clean --rmsource $$RPM_TOPDIR/SPECS/$(RPMDIST).spec ; \
103         mv $$RPM_TOPDIR/RPMS/i386/$(RPMDIST)-*.rpm . ; \
104         mv $$RPM_TOPDIR/SRPMS/$(RPMDIST)-*.src.rpm .
105
106 #
107 # Build a Solaris pkkgadd format file
108 # run 'make pkgadd' once you've done './configure' and 'make' to make a Solaris pkgadd format
109 # file (which ends up back in this directory).
110 # The pkgadd file is in 'pkgtrans' format, so to install on Solaris, do
111 # pkgadd -d ./HAXXcurl-*
112 #
113
114 # gak - libtool requires an absoulte directory, hence the pwd below...
115 pkgadd:
116         umask 022 ; \
117         make install DESTDIR=`/bin/pwd`/packages/Solaris/root ; \
118         cat COPYING > $(srcdir)/packages/Solaris/copyright ; \
119         cd $(srcdir)/packages/Solaris && $(MAKE) package
120
121 #
122 # Build a cygwin binary tarball installation file
123 # resulting .tar.bz2 file will end up at packages/Win32/cygwin
124 cygwinbin:
125         $(MAKE) -C packages/Win32/cygwin cygwinbin
126
127 # We extend the standard install with a custom hook:
128 install-data-hook:
129         cd include && $(MAKE) install
130         cd docs && $(MAKE) install
131
132 # We extend the standard uninstall with a custom hook:
133 uninstall-hook:
134         cd include && $(MAKE) uninstall
135         cd docs && $(MAKE) uninstall
136
137 ca-bundle: lib/mk-ca-bundle.pl
138         @echo "generate a fresh ca-bundle.crt"
139         @perl $< -b -l -u lib/ca-bundle.crt
140
141 ca-firefox: lib/firefox-db2pem.sh
142         @echo "generate a fresh ca-bundle.crt"
143         ./lib/firefox-db2pem.sh lib/ca-bundle.crt