Skip to content
Snippets Groups Projects
Makefile.am 988 B
Newer Older
Daniel Stenberg's avatar
Daniel Stenberg committed
#
# $Id$
#

# Some flags needed when trying to cause warnings ;-)
# CFLAGS = -g -DMALLOCDEBUG # -Wall -pedantic
#CPPFLAGS = -DGLOBURL -DCURL_SEPARATORS
Daniel Stenberg's avatar
Daniel Stenberg committed

INCLUDES = -I$(top_srcdir)/include

bin_PROGRAMS = curl #memtest

noinst_HEADERS = setup.h \
	config-win32.h \
	urlglob.h \
	version.h \
	writeout.h

#memtest_SOURCES = memtest.c
#memtest_LDADD = $(top_srcdir)/lib/libcurl.la
Daniel Stenberg's avatar
Daniel Stenberg committed

Daniel Stenberg's avatar
Daniel Stenberg committed
curl_SOURCES = main.c hugehelp.c urlglob.c writeout.c
curl_LDADD = ../lib/libcurl.la
curl_DEPENDENCIES = ../lib/libcurl.la
Daniel Stenberg's avatar
Daniel Stenberg committed
BUILT_SOURCES = hugehelp.c
CLEANFILES = hugehelp.c
NROFF=@NROFF@

EXTRA_DIST = mkhelp.pl config-win32.h curlmsg.msg\
	Makefile.vc6 Makefile.b32 Makefile.m32 config.h.in
Daniel Stenberg's avatar
Daniel Stenberg committed

AUTOMAKE_OPTIONS = foreign no-dependencies

Daniel Stenberg's avatar
Daniel Stenberg committed
MANPAGE=$(top_srcdir)/docs/curl.1
README=$(top_srcdir)/docs/MANUAL
Daniel Stenberg's avatar
Daniel Stenberg committed
MKHELP=$(top_srcdir)/src/mkhelp.pl

Daniel Stenberg's avatar
Daniel Stenberg committed
# This generates the hugehelp.c file
Daniel Stenberg's avatar
Daniel Stenberg committed
hugehelp.c: $(README) $(MANPAGE)  mkhelp.pl
Daniel Stenberg's avatar
Daniel Stenberg committed
	rm -f hugehelp.c
Daniel Stenberg's avatar
Daniel Stenberg committed
	$(NROFF) -man $(MANPAGE) | $(PERL) $(MKHELP)  $(README) > hugehelp.c