curl/src/Makefile.am

43 lines
990 B
Makefile
Raw Normal View History

1999-12-29 14:20:26 +00:00
#
# $Id$
#
# Some flags needed when trying to cause warnings ;-)
# CFLAGS = -g -DMALLOCDEBUG # -Wall -pedantic
2000-05-22 14:12:12 +00:00
#CPPFLAGS = -DGLOBURL -DCURL_SEPARATORS
1999-12-29 14:20:26 +00:00
INCLUDES = -I$(top_srcdir)/include
bin_PROGRAMS = curl #memtest
2001-01-08 10:00:14 +00:00
noinst_HEADERS = setup.h \
config-win32.h \
2001-11-29 12:42:50 +00:00
config-mac.h \
2001-01-08 10:00:14 +00:00
urlglob.h \
version.h \
writeout.h
#memtest_SOURCES = memtest.c
#memtest_LDADD = $(top_srcdir)/lib/libcurl.la
1999-12-29 14:20:26 +00:00
2000-10-02 06:32:05 +00:00
curl_SOURCES = main.c hugehelp.c urlglob.c writeout.c
2001-01-08 10:00:14 +00:00
curl_LDADD = ../lib/libcurl.la
curl_DEPENDENCIES = ../lib/libcurl.la
1999-12-29 14:20:26 +00:00
BUILT_SOURCES = hugehelp.c
CLEANFILES = hugehelp.c
NROFF=@NROFF@
2001-11-29 12:42:50 +00:00
EXTRA_DIST = mkhelp.pl curlmsg.msg \
2001-05-22 21:17:58 +00:00
Makefile.vc6 Makefile.b32 Makefile.m32 config.h.in
1999-12-29 14:20:26 +00:00
AUTOMAKE_OPTIONS = foreign no-dependencies
2000-05-24 22:53:37 +00:00
MANPAGE=$(top_srcdir)/docs/curl.1
2000-11-30 08:08:49 +00:00
README=$(top_srcdir)/docs/MANUAL
2000-05-24 22:53:37 +00:00
MKHELP=$(top_srcdir)/src/mkhelp.pl
1999-12-29 14:20:26 +00:00
# This generates the hugehelp.c file
2000-05-24 22:53:37 +00:00
hugehelp.c: $(README) $(MANPAGE) mkhelp.pl
1999-12-29 14:20:26 +00:00
rm -f hugehelp.c
2000-05-24 22:53:37 +00:00
$(NROFF) -man $(MANPAGE) | $(PERL) $(MKHELP) $(README) > hugehelp.c