diff options
author | Gunter Knauf <gk@gknw.de> | 2009-07-14 13:25:14 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2009-07-14 13:25:14 +0000 |
commit | f671d0513ccc9cdcd7516c732c719b2f31a9578e (patch) | |
tree | e419c483393ab20caaf0e93f1d236edb08743670 /src/Makefile.netware | |
parent | 100f6b7703ff9a45340c0b27122806952f243ab8 (diff) | |
download | curl-f671d0513ccc9cdcd7516c732c719b2f31a9578e.tar.gz |
renamed generated config.h to curl_config.h in order to avoid clashes when libcurl is used with other projects which also have a config.h.
Diffstat (limited to 'src/Makefile.netware')
-rw-r--r-- | src/Makefile.netware | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.netware b/src/Makefile.netware index b044105f8..56a35852a 100644 --- a/src/Makefile.netware +++ b/src/Makefile.netware @@ -235,7 +235,7 @@ vpath %.c $(CURL_LIB) all: prebuild $(TARGET).nlm -prebuild: $(OBJDIR) $(OBJDIR)/version.inc config.h +prebuild: $(OBJDIR) $(OBJDIR)/version.inc curl_config.h $(OBJDIR)/%.o: %.c # @echo Compiling $< @@ -254,7 +254,7 @@ clean: ifeq "$(wildcard hugehelp.c.cvs)" "hugehelp.c.cvs" -$(RM) hugehelp.c endif - -$(RM) config.h + -$(RM) curl_config.h -$(RM) -r $(OBJDIR) distclean: clean @@ -361,7 +361,7 @@ endif @echo $(DL)output $(TARGET).nlm$(DL) >> $@ endif -config.h: Makefile.netware +curl_config.h: Makefile.netware @echo Creating $@ @echo $(DL)/* $@ for NetWare target.$(DL) > $@ @echo $(DL)** Do not edit this file - it is created by make!$(DL) >> $@ |