diff options
Diffstat (limited to 'tools/darwin/depends/libsdl/Makefile')
-rw-r--r-- | tools/darwin/depends/libsdl/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/tools/darwin/depends/libsdl/Makefile b/tools/darwin/depends/libsdl/Makefile new file mode 100644 index 0000000000..b88f838dd1 --- /dev/null +++ b/tools/darwin/depends/libsdl/Makefile @@ -0,0 +1,40 @@ +include ../Makefile.include + +# lib name, version +LIBNAME=SDL +VERSION=1.2.13 +SOURCE=$(LIBNAME)-$(VERSION) +ARCHIVE=$(SOURCE).tar.gz + +# configuration settings +CONFIGURE=./configure --prefix=$(PREFIX) \ + --without-x --disable-video-x11 + +LIBDYLIB=$(SOURCE)/.libs/$(LIBNAME).dylib + +all: $(LIBDYLIB) .installed + +$(TARBALLS_LOCATION)/$(ARCHIVE): + $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE) + echo $(ARCHIVE) > .gitignore + +$(SOURCE): $(TARBALLS_LOCATION)/$(ARCHIVE) + rm -rf $(SOURCE) + $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) + echo $(SOURCE) > .gitignore + cd $(SOURCE); patch -p0 < ../01-SDL_SetWidthHeight.patch + 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 |