Skip to content
Snippets Groups Projects
Commit b3e23373 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

use var for awk.

parent e5adab39
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,7 @@ ifdef METROWERKS
else
CC = gcc
endif
AWK = awk
YACC = bison -y
CP = cp -afv
# RM = rm -f
......@@ -198,7 +199,7 @@ $(OBJDIR)/%.o: %.c
$(OBJDIR)/version.inc: ../include/curl/curlver.h $(OBJDIR)
@echo Creating $@
@awk -f ../packages/NetWare/get_ver.awk $< > $@
@$(AWK) -f ../packages/NetWare/get_ver.awk $< > $@
dist: all
-$(RM) $(OBJDIR)/*.o $(OBJDIR)/$(TARGET).map $(OBJDIR)/$(TARGET).ncv
......@@ -444,6 +445,11 @@ ifdef WITH_SSL
else
@echo SSL support: no
endif
ifdef WITH_SSH2
@echo SSH2 support: enabled (libssh2)
else
@echo SSH2 support: no
endif
ifdef WITH_ZLIB
@echo zlib support: enabled
else
......
......@@ -68,6 +68,7 @@ ifdef METROWERKS
else
CC = gcc
endif
AWK = awk
CP = cp -afv
# RM = rm -f
# if you want to mark the target as MTSAFE you will need a tool for
......@@ -180,7 +181,7 @@ $(OBJDIR)/%.o: %.c
$(OBJDIR)/version.inc: $(CURL_INC)/curl/curlver.h $(OBJDIR)
@echo Creating $@
@awk -f ../packages/NetWare/get_ver.awk $< > $@
@$(AWK) -f ../packages/NetWare/get_ver.awk $< > $@
dist: all
-$(RM) $(OBJDIR)/*.o $(OBJDIR)/$(TARGET).map $(OBJDIR)/$(TARGET).ncv
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment