diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-02-25 14:08:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-02-25 14:08:18 +0000 |
commit | e6ed3478ea5a3ae191b244814a273c566d432f39 (patch) | |
tree | b945c4057835ae31608c394afeb5c6f8ff3dcb38 /src | |
parent | db08d9c6b9af6faa4613e60d4db4b0da0bb3f615 (diff) |
automake usage and options cleanup
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 19bed07a0..4a2561799 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,26 +2,26 @@ # $Id$ # -# Some flags needed when trying to cause warnings ;-) -# CFLAGS = -g -DMALLOCDEBUG # -Wall -pedantic -#CPPFLAGS = -DGLOBURL -DCURL_SEPARATORS +AUTOMAKE_OPTIONS = foreign nostdinc INCLUDES = -I$(top_srcdir)/include bin_PROGRAMS = curl #memtest -noinst_HEADERS = setup.h \ +#memtest_SOURCES = memtest.c +#memtest_LDADD = $(top_srcdir)/lib/libcurl.la + +curl_SOURCES = main.c hugehelp.c urlglob.c writeout.c setup.h \ config-win32.h \ config-mac.h \ config-vms.h \ urlglob.h \ version.h \ - writeout.h - -#memtest_SOURCES = memtest.c -#memtest_LDADD = $(top_srcdir)/lib/libcurl.la + writeout.h \ + config-win32.h \ + config-mac.h \ + config-vms.h -curl_SOURCES = main.c hugehelp.c urlglob.c writeout.c curl_LDADD = ../lib/libcurl.la curl_DEPENDENCIES = ../lib/libcurl.la BUILT_SOURCES = hugehelp.c @@ -33,12 +33,7 @@ EXTRA_DIST = mkhelp.pl curlmsg.msg \ macos/curl.mcp.xml.sit.hqx \ macos/MACINSTALL.TXT \ macos/src/curl_GUSIConfig.cpp \ - macos/src/macos_main.cpp \ - config-win32.h \ - config-mac.h \ - config-vms.h - -AUTOMAKE_OPTIONS = foreign no-dependencies + macos/src/macos_main.cpp MANPAGE=$(top_srcdir)/docs/curl.1 README=$(top_srcdir)/docs/MANUAL |