diff options
author | Gunter Knauf <gk@gknw.de> | 2004-06-11 02:29:16 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2004-06-11 02:29:16 +0000 |
commit | 8d0c77403c61d41b0c9b0dd02cca500847d4c0cf (patch) | |
tree | d49e8a41a307c5b6a6ce68ebfc97f791c06dcc2e | |
parent | 601062455cc4545966a34e5cf8b9c66e3f2e64b7 (diff) |
some more makefile changes.
-rw-r--r-- | lib/Makefile.netware | 6 | ||||
-rw-r--r-- | packages/NetWare/get_ver.awk | 7 | ||||
-rw-r--r-- | src/Makefile.netware | 2 |
3 files changed, 8 insertions, 7 deletions
diff --git a/lib/Makefile.netware b/lib/Makefile.netware index a81a62f9c..ebe44dba0 100644 --- a/lib/Makefile.netware +++ b/lib/Makefile.netware @@ -56,7 +56,7 @@ CP = cp -afv # RM = rm -f # if you want to mark the target as MTSAFE you will need a tool for # generating the xdc data for the linker; here's a minimal tool: -# http://www.gknw.de/development/prgtools/mkxdc.zip +# http://www.gknw.com/development/prgtools/mkxdc.zip MPKXDC = mkxdc # Global flags for all compilers @@ -188,8 +188,8 @@ OBJS = \ all: $(OBJDIR) $(OBJDIR)/version.inc $(OBJDIR)/$(TARGET).nlm $(OBJDIR)/%.o: %.c - @echo Compiling $< - @$(CC) $(CFLAGS) -c $< -o $@ +# @echo Compiling $< + $(CC) $(CFLAGS) -c $< -o $@ $(OBJDIR)/version.inc: ../include/curl/curlver.h $(OBJDIR) @echo Creating $@ diff --git a/packages/NetWare/get_ver.awk b/packages/NetWare/get_ver.awk index 3a941764c..3ae223664 100644 --- a/packages/NetWare/get_ver.awk +++ b/packages/NetWare/get_ver.awk @@ -20,7 +20,10 @@ # * # * $Id$ # *************************************************************************** -# fetch libcurl version number from input file and write them to STDOUT +# awk script which fetches libcurl version number and string from input file +# and writes them to STDOUT. Here you can get an awk version for Win32: +# http://www.gknw.com/development/prgtools/awk.zip +# BEGIN { while ((getline < ARGV[1]) > 0) { if (match ($0, /^#define LIBCURL_VERSION "[^"]+"/)) { @@ -37,8 +40,6 @@ BEGIN { } } libcurl_ver = libcurl_ver_major "," libcurl_ver_minor "," libcurl_ver_patch; - print "LIBCURL_VERSION = " libcurl_ver ""; print "LIBCURL_VERSION_STR = " libcurl_ver_str ""; - } diff --git a/src/Makefile.netware b/src/Makefile.netware index c7b3e2e08..1f4923fbd 100644 --- a/src/Makefile.netware +++ b/src/Makefile.netware @@ -57,7 +57,7 @@ CP = cp -afv # RM = rm -f # if you want to mark the target as MTSAFE you will need a tool for # generating the xdc data for the linker; here's a minimal tool: -# http://www.gknw.de/development/prgtools/mkxdc.zip +# http://www.gknw.com/development/prgtools/mkxdc.zip MPKXDC = mkxdc # Global flags for all compilers |