Commit 6f3e8173 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

../include/curl/curlbuild.h.dist is not present in release archives so

the makefile cannot depend on it
parent cfda5df0
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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)