curl/src/Makefile.am

79 lines
2.9 KiB
Makefile
Raw Normal View History

2004-01-13 03:57:01 -05:00
#***************************************************************************
# _ _ ____ _
# Project ___| | | | _ \| |
# / __| | | | |_) | |
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
1999-12-29 09:20:26 -05:00
#
# Copyright (C) 1998 - 2005, 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.
#
# 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.
#
# 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
# we use srcdir/src for "private" includes
# we use srcdir/include for the static global include files
# we use builddir/src for the generated include files to get found
# we use srcdir/lib for the header files we "borrow" from the lib
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/include -I$(top_builddir)/src \
-I$(top_srcdir)/lib
1999-12-29 09:20:26 -05:00
bin_PROGRAMS = curl
include Makefile.inc
1999-12-29 09:20:26 -05:00
2002-09-04 09:10:37 -04:00
curl_LDADD = ../lib/libcurl.la
2001-01-08 05:00:14 -05:00
curl_DEPENDENCIES = ../lib/libcurl.la
1999-12-29 09:20:26 -05:00
BUILT_SOURCES = hugehelp.c
CLEANFILES = hugehelp.c
NROFF=@NROFF@ @MANOPT@ # figured out by the configure script
1999-12-29 09:20:26 -05:00
EXTRA_DIST = mkhelp.pl makefile.dj Makefile.vc6 Makefile.b32 Makefile.m32 \
Makefile.riscos config.h.in macos/curl.mcp.xml.sit.hqx \
macos/MACINSTALL.TXT macos/src/curl_GUSIConfig.cpp \
macos/src/macos_main.cpp config-amigaos.h makefile.amiga curl.rc \
2005-01-08 11:03:45 -05:00
Makefile.netware Makefile.inc Makefile.Watcom
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
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
if HAVE_LIBZ
# This generates the hugehelp.c file in both uncompressed and compressed formats
$(HUGE): $(README) $(MANPAGE) mkhelp.pl
echo '#include "setup.h"' > $(HUGE)
echo '#ifndef HAVE_LIBZ' >> $(HUGE)
$(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) $(README) >> $(HUGE)
echo '#else' >> $(HUGE)
$(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) -c $(README) >> $(HUGE)
echo '#endif /* HAVE_LIBZ */' >> $(HUGE)
2004-02-12 09:46:12 -05:00
else # HAVE_LIBZ
# This generates the hugehelp.c file uncompressed only
$(HUGE): $(README) $(MANPAGE) mkhelp.pl
echo '#include "setup.h"' > $(HUGE)
$(NROFF) $(MANPAGE) | $(PERL) $(MKHELP) $(README) >> $(HUGE)
endif
2004-02-12 09:46:12 -05:00
else # USE_MANUAL
# built-in manual has been disabled, make a blank file
$(HUGE):
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