From b900318d8d45a5ea1f8522d7714d55a2c61cc4a7 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 6 Oct 2000 11:03:43 +0000 Subject: =?UTF-8?q?J=F6rg's=20updated=20makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Makefile.m32 | 136 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 71 insertions(+), 65 deletions(-) (limited to 'src') diff --git a/src/Makefile.m32 b/src/Makefile.m32 index 0221047a1..ced40a90a 100644 --- a/src/Makefile.m32 +++ b/src/Makefile.m32 @@ -1,65 +1,71 @@ -############################################################# -## Makefile for building curl.exe with MingW32 (GCC-2.95) and -## optionally OpenSSL (0.9.4) -## -## Use: make -f Makefile.m32 [SSL=1] -## -## Comments to: Troy Engel or -## Joern Hartroth - -CC = gcc -STRIP = strip -s -OPENSSL_PATH = ../../openssl-0.9.5a - -# We may need these someday -# PERL = perl -# NROFF = nroff - -######################################################## -## Nothing more to do below this line! - -INCLUDES = -I. -I.. -I../include -CFLAGS = -g -O2 -DMINGW32 -LDFLAGS = -COMPILE = $(CC) $(INCLUDES) $(CFLAGS) -LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@ - -curl_PROGRAMS = curl.exe -curl_OBJECTS = main.o hugehelp.o urlglob.o -curl_SOURCES = main.c hugehelp.c urlglob.c -curl_DEPENDENCIES = ../lib/libcurl.a -curl_LDADD = -L../lib -lcurl -lwsock32 -ifdef SSL - curl_LDADD += -L$(OPENSSL_PATH)/out -leay32 -lssl32 -lRSAglue -endif - -PROGRAMS = $(curl_PROGRAMS) -SOURCES = $(curl_SOURCES) -OBJECTS = $(curl_OBJECTS) - -all: curl - -curl: $(curl_OBJECTS) $(curl_DEPENDENCIES) - -@erase curl.exe - $(LINK) $(curl_OBJECTS) $(curl_LDADD) - $(STRIP) $(curl_PROGRAMS) - -# We don't have nroff normally under win32 -# hugehelp.c: ../README.curl ../curl.1 mkhelp.pl -# -@erase hugehelp.c -# $(NROFF) -man ../curl.1 | $(PERL) mkhelp.pl ../README.curl > hugehelp.c - -.c.o: - $(COMPILE) -c $< - -.s.o: - $(COMPILE) -c $< - -.S.o: - $(COMPILE) -c $< - -clean: - -@erase $(curl_OBJECTS) - -distrib: clean - -@erase $(curl_PROGRAMS) +############################################################# +## Makefile for building curl.exe with MingW32 (GCC-2.95) and +## optionally OpenSSL (0.9.6) +## +## Use: make -f Makefile.m32 [SSL=1] [DYN=1] +## +## Comments to: Troy Engel or +## Joern Hartroth + +CC = gcc +STRIP = strip -s +OPENSSL_PATH = ../../openssl-0.9.6 + +# We may need these someday +# PERL = perl +# NROFF = nroff + +######################################################## +## Nothing more to do below this line! + +INCLUDES = -I. -I.. -I../include +CFLAGS = -g -O2 -DMINGW32 +LDFLAGS = +COMPILE = $(CC) $(INCLUDES) $(CFLAGS) +LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@ + +curl_PROGRAMS = curl.exe +curl_OBJECTS = main.o hugehelp.o urlglob.o writeout.o +curl_SOURCES = main.c hugehelp.c urlglob.c writeout.c +ifdef DYN + curl_DEPENDENCIES = ../lib/libcurldll.a ../lib/libcurl.dll + curl_LDADD = -L../lib -lcurldll +else + curl_DEPENDENCIES = ../lib/libcurl.a + curl_LDADD = -L../lib -lcurl +endif +curl_LDADD += -lwsock32 +ifdef SSL + curl_LDADD += -L$(OPENSSL_PATH)/out -leay32 -lssl32 -lRSAglue +endif + +PROGRAMS = $(curl_PROGRAMS) +SOURCES = $(curl_SOURCES) +OBJECTS = $(curl_OBJECTS) + +all: curl.exe + +curl.exe: $(curl_OBJECTS) $(curl_DEPENDENCIES) + -@erase $@ + $(LINK) $(curl_OBJECTS) $(curl_LDADD) + $(STRIP) $@ + +# We don't have nroff normally under win32 +# hugehelp.c: ../README.curl ../curl.1 mkhelp.pl +# -@erase hugehelp.c +# $(NROFF) -man ../curl.1 | $(PERL) mkhelp.pl ../README.curl > hugehelp.c + +.c.o: + $(COMPILE) -c $< + +.s.o: + $(COMPILE) -c $< + +.S.o: + $(COMPILE) -c $< + +clean: + -@erase $(curl_OBJECTS) + +distrib: clean + -@erase $(curl_PROGRAMS) -- cgit v1.2.3