From 3c39e45375ef23099572a4cbbd1e8d2f6869c82b Mon Sep 17 00:00:00 2001 From: "S. Davilla" Date: Mon, 11 Apr 2011 13:00:28 -0400 Subject: [osx/ios] refactor depends build system to use config.site, for testing only right now --- tools/darwin/depends/curl/Makefile | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 tools/darwin/depends/curl/Makefile (limited to 'tools/darwin/depends/curl') diff --git a/tools/darwin/depends/curl/Makefile b/tools/darwin/depends/curl/Makefile new file mode 100644 index 0000000000..da6362cb2c --- /dev/null +++ b/tools/darwin/depends/curl/Makefile @@ -0,0 +1,37 @@ +include ../Makefile.include + +# lib name, version +LIBNAME=curl +VERSION=7.19.4 +SOURCE=$(LIBNAME)-$(VERSION) +ARCHIVE=$(SOURCE).tar.bz2 + +# configuration settings +CONFIGURE=./configure --prefix=$(PREFIX) + +LIBDYLIB=$(SOURCE)/.libs/(LIBNAME).dylib + +all: $(LIBDYLIB) .installed + +$(TARBALLS_LOCATION)/$(ARCHIVE): + $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE) + +$(SOURCE): $(TARBALLS_LOCATION)/$(ARCHIVE) + rm -rf $(SOURCE) + $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) + echo $(SOURCE) > .gitignore + cd $(SOURCE); $(CONFIGURE) + +$(LIBDYLIB): $(SOURCE) + make -C $(SOURCE) + +.installed: + make -C $(SOURCE) install + touch $@ + +clean: + make -C $(SOURCE) clean + rm -f .installed + +distclean:: + rm -rf $(SOURCE) .installed -- cgit v1.2.3