diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2011-04-07 15:19:21 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-04-07 15:19:21 +0200 |
commit | aeb214f3e8fa958b2032fe3a724df3ee252dfcab (patch) | |
tree | ae81d205f43ef264f136f46d96f0ac4a4c386490 | |
parent | 89fa3b3efbe29d2ed84703160229c6abb37f1af9 (diff) |
src/Makefile.b32: updates
* Rename the object object directory from 'objs' to 'BCC_obj' to be in
sync with my previous patch for lib/Makefile.b32.
* Turn off these warnings to keep the build totally silent (with CBuilder-6
that is).
-w-inl 8026 Functions X are not expanded inline.
-w-pia 8060 Possibly incorrect assignment
-w-pin 8061 Initialization is only partially bracketed
(same added in src/Makefile.b32)
* $(MKDIR) and $(RMDIR) have been replaced with the shell-commands 'md'
and 'rd'. When having MingW/Msys programs 'mkdir.exe' and 'rmdir.exe' in
$PATH, this confuses Borland's make and the result (the cleaning etc.) would
not be as expected.
* Removed the preprocessing step; no need for PP_CMD and the .int files.
curl.exe builds fine w/o and the makefile gets simpler.
* Added a target for creating a compressed hugehelp.c if WITH_ZLIB is defined.
It assumes groff, gzip and perl is available if such an "advanced" users
requests it. Okay? BTW. My groff and Perl needs unix-slashes ('/').
Other perls should handle both forms ('/' and '\').
-rw-r--r-- | src/Makefile.b32 | 29 |
1 files changed, 20 insertions, 9 deletions
diff --git a/src/Makefile.b32 b/src/Makefile.b32 index cc047f49c..37981b83c 100644 --- a/src/Makefile.b32 +++ b/src/Makefile.b32 @@ -34,18 +34,18 @@ OPENSSL_PATH = ..\..\openssl-0.9.8q PROGNAME = curl.exe # Setup environment -PP_CMD = cpp32 -q -P- CC_CMD = bcc32 -q -c LD = bcc32 RM = del 2>NUL -MKDIR = mkdir -RMDIR = rmdir /s /q 2>NUL +MKDIR = md +RMDIR = rd /q 2>nul +COPY = $(COMSPEC) /c copy /y -CC_FLAGS = -5 -O2 -tWM -w -w-aus -w-ccc -w-dup -w-prc -w-pro -w-rch -w-sig -w-spa -Dinline=__inline +CC_FLAGS = -5 -O2 -tWM -w -w-aus -w-ccc -w-dup -w-prc -w-pro -w-rch -w-sig -w-spa -w-inl -w-pia -w-pin -Dinline=__inline LDFLAGS = -q -lq -lap SRCDIRS = .;..\lib -OBJDIR = .\objs +OBJDIR = .\BCC_objs INCDIRS = -I.;..\include;..\lib LINKLIB = $(BCCDIR)\lib\cw32mt.lib DEFINES = -DNDEBUG -DWIN32 @@ -84,13 +84,14 @@ CSOURCES = $(CURL_CFILES) $(CURLX_ONES:/lib/=) OBJECTS = $(CSOURCES:.c=.obj) .c.obj: - @-$(RM) $(@R).int - $(PP_CMD) $(CC_FLAGS) $(INCDIRS) $(DEFINES) -o$(@R).int $(<) - $(CC_CMD) $(CC_FLAGS) -o$(@) $(@R).int + $(CC_CMD) $(CC_FLAGS) $(INCDIRS) $(DEFINES) -o$@ $< -all: $(OBJDIR) $(PROGNAME) +all: $(OBJDIR) hugehelp $(PROGNAME) clean: + cd $(OBJDIR) + @-$(RM) $(OBJECTS) + cd .. @-$(RMDIR) $(OBJDIR) @-$(RM) $(PROGNAME) @-$(RM) curl.tds @@ -99,6 +100,16 @@ $(OBJDIR): @-$(RMDIR) $(OBJDIR) @-$(MKDIR) $(OBJDIR) +!ifdef WITH_ZLIB +hugehelp: ..\docs\MANUAL ..\docs\curl.1 mkhelp.pl + groff -Tascii -man -P -c ../docs/curl.1 > hugehelp.tmp + perl -w mkhelp.pl -c ../docs/MANUAL < hugehelp.tmp > hugehelp.c + @-$(RM) hugehelp.tmp +!else +hugehelp: + $(COPY) hugehelp.c.cvs hugehelp.c +!endif + $(PROGNAME): $(OBJECTS) $(LIBCURL_LIB) $(LINKLIB) @-$(RM) $(PROGNAME) $(LD) $(LDFLAGS) -e$@ $** |