diff options
-rw-r--r-- | lib/Makefile.m32 | 2 | ||||
-rw-r--r-- | src/Makefile.m32 | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/Makefile.m32 b/lib/Makefile.m32 index 5ee2ba7ff..d7f8de87f 100644 --- a/lib/Makefile.m32 +++ b/lib/Makefile.m32 @@ -67,7 +67,7 @@ AR = $(CROSSPREFIX)ar RANLIB = $(CROSSPREFIX)ranlib RC = $(CROSSPREFIX)windres RCFLAGS = --include-dir=$(PROOT)/include -DDEBUGBUILD=0 -O COFF -i -STRIP = strip -g +STRIP = $(CROSSPREFIX)strip -g # Platform-dependent helper tool macros ifeq ($(findstring /sh,$(SHELL)),/sh) diff --git a/src/Makefile.m32 b/src/Makefile.m32 index 1c7cbb2a7..2008a20b8 100644 --- a/src/Makefile.m32 +++ b/src/Makefile.m32 @@ -268,9 +268,9 @@ curl.exe: $(RESOURCE) $(curl_OBJECTS) $(curl_DEPENDENCIES) $(CC) $(LDFLAGS) -o $@ $< $(curl_OBJECTS) $(curl_LDADD) # We don't have nroff normally under win32 -# hugehelp.c: $(PROOT)/README.curl $(PROOT)/curl.1 mkhelp.pl -# -$(RM) hugehelp.c -# $(NROFF) -man $(PROOT)/curl.1 | $(PERL) mkhelp.pl $(PROOT)/README.curl > hugehelp.c +# hugehelp.c: $(PROOT)/docs/MANUAL $(PROOT)/docs/curl.1 mkhelp.pl +# @$(call DEL, hugehelp.c) +# $(NROFF) -man $(PROOT)/docs/curl.1 | $(PERL) mkhelp.pl $(PROOT)/docs/MANUAL > hugehelp.c hugehelp.c: @echo Creating $@ |