curl/src/Makefile.am

46 lines
1007 B
Makefile
Raw Normal View History

1999-12-29 09:20:26 -05:00
#
# $Id$
#
2002-02-25 09:08:18 -05:00
AUTOMAKE_OPTIONS = foreign nostdinc
1999-12-29 09:20:26 -05:00
INCLUDES = -I$(top_srcdir)/include
bin_PROGRAMS = curl #memtest
2002-02-25 09:08:18 -05:00
#memtest_SOURCES = memtest.c
#memtest_LDADD = $(top_srcdir)/lib/libcurl.la
curl_SOURCES = main.c hugehelp.c urlglob.c writeout.c setup.h \
2001-01-08 05:00:14 -05:00
config-win32.h \
2001-11-29 07:42:50 -05:00
config-mac.h \
2002-02-20 18:24:04 -05:00
config-vms.h \
2001-01-08 05:00:14 -05:00
urlglob.h \
version.h \
2002-02-25 09:08:18 -05:00
writeout.h \
config-win32.h \
config-mac.h \
config-vms.h
1999-12-29 09:20:26 -05:00
2001-01-08 05:00:14 -05:00
curl_LDADD = ../lib/libcurl.la
curl_DEPENDENCIES = ../lib/libcurl.la
1999-12-29 09:20:26 -05:00
BUILT_SOURCES = hugehelp.c
CLEANFILES = hugehelp.c
NROFF=@NROFF@
2001-11-29 07:42:50 -05:00
EXTRA_DIST = mkhelp.pl curlmsg.msg \
Makefile.vc6 Makefile.b32 Makefile.m32 config.h.in \
macos/curl.mcp.xml.sit.hqx \
macos/MACINSTALL.TXT \
macos/src/curl_GUSIConfig.cpp \
2002-02-25 09:08:18 -05:00
macos/src/macos_main.cpp
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
1999-12-29 09:20:26 -05:00
# This generates the hugehelp.c file
2000-05-24 18:53:37 -04:00
hugehelp.c: $(README) $(MANPAGE) mkhelp.pl
1999-12-29 09:20:26 -05:00
rm -f hugehelp.c
2000-05-24 18:53:37 -04:00
$(NROFF) -man $(MANPAGE) | $(PERL) $(MKHELP) $(README) > hugehelp.c