mirror of
https://github.com/moparisthebest/curl
synced 2025-03-11 07:39:50 -04:00
enabled build with hardcoded ca-bundle path;
added distclean target.
This commit is contained in:
parent
856ba4c6c6
commit
ee51c07be6
@ -220,6 +220,9 @@ clean:
|
|||||||
-$(RM) config.h ca-bundle.h
|
-$(RM) config.h ca-bundle.h
|
||||||
-$(RM) -r $(OBJDIR)
|
-$(RM) -r $(OBJDIR)
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
-$(RM) -r $(TARGET).lib $(TARGET).nlm
|
||||||
|
|
||||||
$(INSTDIR):
|
$(INSTDIR):
|
||||||
@mkdir $(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)/* Do not edit this file - it is created by make!$(DL) > $@
|
||||||
@echo $(DL)** All your changes will be lost!!$(DL) >> $@
|
@echo $(DL)** All your changes will be lost!!$(DL) >> $@
|
||||||
@echo $(DL)*/$(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) >> $@
|
@echo $(DL)#define CURL_CA_BUNDLE getenv("CURL_CA_BUNDLE")$(DL) >> $@
|
||||||
|
endif
|
||||||
|
|
||||||
info: $(OBJDIR)/version.inc
|
info: $(OBJDIR)/version.inc
|
||||||
@echo Configured to build $(TARGET) with these options:
|
@echo Configured to build $(TARGET) with these options:
|
||||||
@echo curl version: $(LIBCURL_VERSION_STR)
|
@echo curl version: $(LIBCURL_VERSION_STR)
|
||||||
@echo compiler/linker: $(CC) / $(LD)
|
@echo compiler/linker: $(CC) / $(LD)
|
||||||
|
ifdef CABUNDLE
|
||||||
|
@echo ca-bundle path: $(CABUNDLE)
|
||||||
|
endif
|
||||||
ifdef WITH_SSL
|
ifdef WITH_SSL
|
||||||
@echo SSL support: enabled (OpenSSL)
|
@echo SSL support: enabled (OpenSSL)
|
||||||
else
|
else
|
||||||
|
@ -198,6 +198,9 @@ endif
|
|||||||
-$(RM) config.h
|
-$(RM) config.h
|
||||||
-$(RM) -r $(OBJDIR)
|
-$(RM) -r $(OBJDIR)
|
||||||
|
|
||||||
|
distclean: clean
|
||||||
|
-$(RM) -r $(TARGET).nlm
|
||||||
|
|
||||||
$(INSTDIR):
|
$(INSTDIR):
|
||||||
@mkdir $(INSTDIR)
|
@mkdir $(INSTDIR)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user