]> granicus.if.org Git - curl/commitdiff
some more makefile changes.
authorGunter Knauf <gk@gknw.de>
Fri, 11 Jun 2004 02:29:16 +0000 (02:29 +0000)
committerGunter Knauf <gk@gknw.de>
Fri, 11 Jun 2004 02:29:16 +0000 (02:29 +0000)
lib/Makefile.netware
packages/NetWare/get_ver.awk
src/Makefile.netware

index a81a62f9ccc603c9798f3a95a83087f2f1de43d9..ebe44dba0f0472ad0bf8d57ad85c5f06710b309b 100644 (file)
@@ -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 $@
index 3a941764c55b4583828b1a807267e3c4021e5e29..3ae2236647b1f3c40d1a9d0d7659eb64781ff1e7 100644 (file)
 # *
 # * $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 "";
-
 }
index c7b3e2e080fb1f80ed967fbe5f28d786e34b69fe..1f4923fbd3e9f1af2e5c7eea0703007a3d228403 100644 (file)
@@ -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