2004-01-13 03:57:01 -05:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
2004-01-13 03:48:41 -05:00
|
|
|
# \___|\___/|_| \_\_____|
|
1999-12-29 09:20:26 -05:00
|
|
|
#
|
2009-04-14 18:00:37 -04:00
|
|
|
# Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
#
|
2004-01-13 03:57:01 -05:00
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
|
|
|
# are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-01-13 03:48:41 -05:00
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
2004-01-13 03:57:01 -05:00
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
2004-01-13 03:48:41 -05:00
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
# $Id$
|
2004-01-13 03:57:01 -05:00
|
|
|
###########################################################################
|
2002-02-25 09:08:18 -05:00
|
|
|
AUTOMAKE_OPTIONS = foreign nostdinc
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2008-07-15 01:46:49 -04:00
|
|
|
# Specify our include paths here, and do it relative to $(top_srcdir) and
|
|
|
|
# $(top_builddir), to ensure that these paths which belong to the library
|
|
|
|
# being currently built and tested are searched before the library which
|
|
|
|
# might possibly already be installed in the system.
|
|
|
|
#
|
2008-08-06 20:29:08 -04:00
|
|
|
# $(top_builddir)/include is for libcurl's generated curl/curlbuild.h file
|
2008-07-15 01:46:49 -04:00
|
|
|
# $(top_srcdir)/include is for libcurl's external include files
|
|
|
|
# $(top_builddir)/lib is for libcurl's generated lib/config.h file
|
|
|
|
# $(top_builddir)/src is for curl's generated src/config.h file
|
|
|
|
# $(top_srcdir)/lib is for libcurl's lib/setup.h and other "borrowed" files
|
|
|
|
# $(top_srcdir)/src is for curl's src/setup.h and "curl-private" files
|
2006-08-07 14:06:37 -04:00
|
|
|
|
2008-08-06 20:29:08 -04:00
|
|
|
INCLUDES = -I$(top_builddir)/include \
|
|
|
|
-I$(top_srcdir)/include \
|
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
-I$(top_builddir)/src \
|
|
|
|
-I$(top_srcdir)/lib \
|
2006-08-07 14:06:37 -04:00
|
|
|
-I$(top_srcdir)/src
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-01-23 07:49:53 -05:00
|
|
|
bin_PROGRAMS = curl
|
2000-10-09 07:24:49 -04:00
|
|
|
|
2004-07-28 14:40:50 -04:00
|
|
|
include Makefile.inc
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2009-05-30 11:56:42 -04:00
|
|
|
if USE_EMBEDDED_ARES
|
|
|
|
EMBEDDEDARES = ../ares/libcares.la
|
|
|
|
else
|
|
|
|
EMBEDDEDARES =
|
|
|
|
endif
|
|
|
|
|
|
|
|
curl_LDADD = ../lib/libcurl.la $(EMBEDDEDARES) @CURL_LIBS@
|
|
|
|
curl_DEPENDENCIES = ../lib/libcurl.la $(EMBEDDEDARES)
|
1999-12-29 09:20:26 -05:00
|
|
|
BUILT_SOURCES = hugehelp.c
|
|
|
|
CLEANFILES = hugehelp.c
|
2007-12-19 16:19:01 -05:00
|
|
|
# Use the C locale to ensure that only ASCII characters appear in the
|
|
|
|
# embedded text.
|
|
|
|
NROFF=env LC_ALL=C @NROFF@ @MANOPT@ # figured out by the configure script
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-04-06 08:06:05 -04:00
|
|
|
EXTRA_DIST = mkhelp.pl makefile.dj Makefile.vc6 Makefile.b32 Makefile.m32 \
|
|
|
|
Makefile.riscos config.h.in macos/curl.mcp.xml.sit.hqx \
|
2009-05-08 14:55:42 -04:00
|
|
|
macos/MACINSTALL.TXT macos/src/curl_GUSIConfig.cpp vc6curlsrc.dsp \
|
2004-04-06 08:06:05 -04:00
|
|
|
macos/src/macos_main.cpp config-amigaos.h makefile.amiga curl.rc \
|
2009-05-08 14:55:42 -04:00
|
|
|
Makefile.netware Makefile.inc Makefile.Watcom vc6curlsrc.dsw \
|
2009-04-14 18:00:37 -04:00
|
|
|
CMakeLists.txt
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-05-24 18:53:37 -04:00
|
|
|
MANPAGE=$(top_srcdir)/docs/curl.1
|
2000-11-30 03:08:49 -05:00
|
|
|
README=$(top_srcdir)/docs/MANUAL
|
2000-05-24 18:53:37 -04:00
|
|
|
MKHELP=$(top_srcdir)/src/mkhelp.pl
|
2004-01-29 10:48:27 -05:00
|
|
|
HUGE=hugehelp.c
|
2000-05-24 18:53:37 -04:00
|
|
|
|
2004-02-12 09:46:12 -05:00
|
|
|
if USE_MANUAL
|
|
|
|
# Here are the stuff to create a built-in manual
|
|
|
|
|
2004-01-13 03:48:41 -05:00
|
|
|
if HAVE_LIBZ
|
|
|
|
# This generates the hugehelp.c file in both uncompressed and compressed formats
|
2004-01-29 10:48:27 -05:00
|
|
|
$(HUGE): $(README) $(MANPAGE) mkhelp.pl
|
2004-04-26 17:15:48 -04:00
|
|
|
echo '#include "setup.h"' > $(HUGE)
|
2004-01-29 10:48:27 -05:00
|
|
|
echo '#ifndef HAVE_LIBZ' >> $(HUGE)
|
2004-02-02 17:39:37 -05:00
|
|
|
$(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) $(README) >> $(HUGE)
|
2004-01-29 10:48:27 -05:00
|
|
|
echo '#else' >> $(HUGE)
|
2004-02-02 17:39:37 -05:00
|
|
|
$(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) -c $(README) >> $(HUGE)
|
2004-01-29 10:48:27 -05:00
|
|
|
echo '#endif /* HAVE_LIBZ */' >> $(HUGE)
|
2004-02-12 09:46:12 -05:00
|
|
|
else # HAVE_LIBZ
|
2004-01-13 03:48:41 -05:00
|
|
|
# This generates the hugehelp.c file uncompressed only
|
2004-01-29 10:48:27 -05:00
|
|
|
$(HUGE): $(README) $(MANPAGE) mkhelp.pl
|
2004-04-26 17:15:48 -04:00
|
|
|
echo '#include "setup.h"' > $(HUGE)
|
2004-04-25 04:13:07 -04:00
|
|
|
$(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) $(README) >> $(HUGE)
|
2004-01-13 03:48:41 -05:00
|
|
|
endif
|
2004-02-12 09:46:12 -05:00
|
|
|
|
|
|
|
else # USE_MANUAL
|
|
|
|
# built-in manual has been disabled, make a blank file
|
|
|
|
$(HUGE):
|
2004-02-20 10:39:37 -05:00
|
|
|
echo "/* built-in manual is disabled, blank function */" > $(HUGE)
|
|
|
|
echo '#include "hugehelp.h"' >> $(HUGE)
|
|
|
|
echo "void hugehelp(void) {}" >>$(HUGE)
|
2004-02-12 09:46:12 -05:00
|
|
|
endif
|