aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile.netware
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Makefile.netware')
-rw-r--r--lib/Makefile.netware10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware
index 726c2c952..a90443bf9 100644
--- a/lib/Makefile.netware
+++ b/lib/Makefile.netware
@@ -220,6 +220,9 @@ clean:
-$(RM) config.h ca-bundle.h
-$(RM) -r $(OBJDIR)
+distclean: clean
+ -$(RM) -r $(TARGET).lib $(TARGET).nlm
+
$(INSTDIR):
@mkdir $(INSTDIR)
@@ -434,12 +437,19 @@ ca-bundle.h: FORCE Makefile.netware
@echo $(DL)/* Do not edit this file - it is created by make!$(DL) > $@
@echo $(DL)** All your changes will be lost!!$(DL) >> $@
@echo $(DL)*/$(DL) >> $@
+ifdef CABUNDLE
+ @echo $(DL)#define CURL_CA_BUNDLE "$(CABUNDLE)"$(DL) >> $@
+else
@echo $(DL)#define CURL_CA_BUNDLE getenv("CURL_CA_BUNDLE")$(DL) >> $@
+endif
info: $(OBJDIR)/version.inc
@echo Configured to build $(TARGET) with these options:
@echo curl version: $(LIBCURL_VERSION_STR)
@echo compiler/linker: $(CC) / $(LD)
+ifdef CABUNDLE
+ @echo ca-bundle path: $(CABUNDLE)
+endif
ifdef WITH_SSL
@echo SSL support: enabled (OpenSSL)
else