diff options
author | S. Davilla <davilla@4pi.com> | 2011-04-11 13:00:28 -0400 |
---|---|---|
committer | S. Davilla <davilla@4pi.com> | 2011-04-12 18:19:24 -0400 |
commit | 3c39e45375ef23099572a4cbbd1e8d2f6869c82b (patch) | |
tree | 8529de20be6632a6ba8ed48662e40619d0b610cb /tools/darwin/depends/fribidi/Makefile | |
parent | 1b4f11c4f023893ef3cddf0fe863da8e67f9373d (diff) |
[osx/ios] refactor depends build system to use config.site, for testing only right now
Diffstat (limited to 'tools/darwin/depends/fribidi/Makefile')
-rw-r--r-- | tools/darwin/depends/fribidi/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tools/darwin/depends/fribidi/Makefile b/tools/darwin/depends/fribidi/Makefile new file mode 100644 index 0000000000..33b091415c --- /dev/null +++ b/tools/darwin/depends/fribidi/Makefile @@ -0,0 +1,38 @@ +include ../Makefile.include + +# lib name, version +LIBNAME=fribidi +VERSION=0.19.1 +SOURCE=$(LIBNAME)-$(VERSION) +ARCHIVE=$(SOURCE).tar.gz + +# configuration settings +CONFIGURE=./configure --prefix=$(PREFIX) \ + --disable-docs + +LIBDYLIB=$(SOURCE)/.libs/lib$(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 |