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 /lib/makefile.dj | |
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 'lib/makefile.dj')
-rw-r--r-- | lib/makefile.dj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/makefile.dj b/lib/makefile.dj index b8d324923..594fff0fb 100644 --- a/lib/makefile.dj +++ b/lib/makefile.dj @@ -4,7 +4,7 @@ # # $Id$ -DEPEND_PREREQ = config.h +DEPEND_PREREQ = curl_config.h TOPDIR = .. include ../packages/DOS/common.dj @@ -17,18 +17,18 @@ CURL_LIB = libcurl.a # NOTE: if ../include/curl/curlbuild.h is missing, you're probably building # this from a CVS checkout and then you need to run buildconf.bat first. -all: $(OBJ_DIR) config.h $(CURL_LIB) +all: $(OBJ_DIR) curl_config.h $(CURL_LIB) $(CURL_LIB): $(OBJECTS) ar rs $@ $? -config.h: config.dos +curl_config.h: config.dos $(COPY) $^ $@ # clean generated files # genclean: - - $(DELETE) config.h + - $(DELETE) curl_config.h # clean object files and subdir # |