summaryrefslogtreecommitdiff
path: root/lib/makefile.dj
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2009-06-08 13:53:23 +0000
committerDaniel Stenberg <daniel@haxx.se>2009-06-08 13:53:23 +0000
commit6f3e8173722fff62251738806d48dc4591353831 (patch)
tree98709589c7829916986aa194348c4aecd0f7f2e9 /lib/makefile.dj
parentcfda5df020722dc899e94bf26a502d65b1afd4ba (diff)
downloadcurl-6f3e8173722fff62251738806d48dc4591353831.tar.gz
../include/curl/curlbuild.h.dist is not present in release archives so
the makefile cannot depend on it
Diffstat (limited to 'lib/makefile.dj')
-rw-r--r--lib/makefile.dj8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/makefile.dj b/lib/makefile.dj
index 54d51e20f..93bb2a812 100644
--- a/lib/makefile.dj
+++ b/lib/makefile.dj
@@ -16,7 +16,10 @@ OBJECTS := $(patsubst %.c,$(OBJ_DIR)/%.o,$(strip $(CSOURCES)))
CURL_LIB = libcurl.a
-all: $(OBJ_DIR) ../include/curl/curlbuild.h config.h $(CURL_LIB)
+# 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)
$(CURL_LIB): $(OBJECTS)
ar rs $@ $?
@@ -24,9 +27,6 @@ $(CURL_LIB): $(OBJECTS)
config.h: config.dos
cp $^ $@
-../include/curl/curlbuild.h: ../include/curl/curlbuild.h.dist
- cp $^ $@
-
clean:
- rm -f $(OBJECTS)