aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2006-03-27 14:34:19 +0000
committerGunter Knauf <gk@gknw.de>2006-03-27 14:34:19 +0000
commitd74725ce6796175ebc2ecb65b4ba72b59029c7de (patch)
tree4da931602f63973c54088d353aa757c16a27cc4d
parent3dad55d7a839933b84a1c79c0a41dbc5d91f78d7 (diff)
minor Makefile fix - let's go 2006;
avoid kiling hugehelp.c when not built from CVS.
-rw-r--r--lib/Makefile.netware4
-rw-r--r--src/Makefile.netware10
2 files changed, 9 insertions, 5 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware
index e6d2c8801..522dc7b48 100644
--- a/lib/Makefile.netware
+++ b/lib/Makefile.netware
@@ -19,7 +19,7 @@ endif
# Edit the path below to point to the base of your OpenSSL package.
ifndef OPENSSL_PATH
-OPENSSL_PATH = ../../openssl-0.9.8
+OPENSSL_PATH = ../../openssl-0.9.8a
endif
ifndef INSTDIR
@@ -29,7 +29,7 @@ endif
# Edit the vars below to change NLM target settings.
TARGET = libcurl
VERSION = $(LIBCURL_VERSION)
-COPYR = Copyright (C) 1996 - 2005, Daniel Stenberg, <daniel@haxx.se>
+COPYR = Copyright (C) 1996 - 2006, Daniel Stenberg, <daniel@haxx.se>
DESCR = cURL libcurl $(LIBCURL_VERSION_STR) - http://curl.haxx.se
MTSAFE = YES
STACK = 64000
diff --git a/src/Makefile.netware b/src/Makefile.netware
index aec7dd666..b4aa08e25 100644
--- a/src/Makefile.netware
+++ b/src/Makefile.netware
@@ -19,7 +19,7 @@ endif
# Edit the path below to point to the base of your OpenSSL package.
ifndef OPENSSL_PATH
-OPENSSL_PATH = ../../openssl-0.9.8
+OPENSSL_PATH = ../../openssl-0.9.8a
endif
ifndef INSTDIR
@@ -29,7 +29,7 @@ endif
# Edit the vars below to change NLM target settings.
TARGET = curl
VERSION = $(LIBCURL_VERSION)
-COPYR = Copyright (C) 1996 - 2005, Daniel Stenberg, <daniel@haxx.se>
+COPYR = Copyright (C) 1996 - 2006, Daniel Stenberg, <daniel@haxx.se>
DESCR = cURL $(LIBCURL_VERSION_STR) - http://curl.haxx.se
MTSAFE = YES
STACK = 64000
@@ -182,10 +182,14 @@ dist: all
-$(RM) $(OBJDIR)/$(TARGET).def $(OBJDIR)/version.inc $(XDCDATA)
install: $(INSTDIR) all
+ @$(CP) ../docs/$(TARGET).pdf $(INSTDIR)
@$(CP) $(TARGET).nlm $(INSTDIR)
clean:
- -$(RM) config.h hugehelp.c
+ifeq "$(wildcard hugehelp.c.cvs)" "hugehelp.c.cvs"
+ -$(RM) hugehelp.c
+endif
+ -$(RM) config.h
-$(RM) -r $(OBJDIR)
$(INSTDIR):