diff options
author | wsnipex <wsnipex@a1.net> | 2015-10-07 15:02:35 +0200 |
---|---|---|
committer | wsnipex <wsnipex@a1.net> | 2015-11-19 19:49:35 +0100 |
commit | a9bb9398cc7800e2fe3400539e192fbed1bc46b9 (patch) | |
tree | 0bc921648290b5598dfe369bcc966548ae3e0919 /tools | |
parent | 64de219d9de34db7a3b934352ade51058f4e9f7b (diff) |
[depends] add native python-2.7
Diffstat (limited to 'tools')
-rw-r--r-- | tools/depends/native/python27-native/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/tools/depends/native/python27-native/Makefile b/tools/depends/native/python27-native/Makefile new file mode 100644 index 0000000000..35ab801c07 --- /dev/null +++ b/tools/depends/native/python27-native/Makefile @@ -0,0 +1,41 @@ +include ../../Makefile.include +PLATFORM=$(NATIVEPLATFORM) +DEPS= ../../Makefile.include.in Makefile + +# lib name, version +LIBNAME=Python +VERSION=2.7.10 +SOURCE=$(LIBNAME)-$(VERSION) +ARCHIVE=$(SOURCE).tar.xz +CWD=$(shell pwd) +HOSTPYTHONDIR=$(CWD)/$(PLATFORM)/hostpython + +CONFIGURE=./configure --prefix=$(NATIVEPREFIX) --disable-shared --disable-toolbox-glue --disable-framework + +LIBDYLIB=$(PLATFORM)/python + +all: .installed-$(PLATFORM) + +$(TARBALLS_LOCATION)/$(ARCHIVE): + cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE) + +$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS) + rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM) + cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) + #cd $(PLATFORM); patch -p0 < ../cpython-2.6.5-multiarch.patch + #cd $(PLATFORM); patch -p0 < ../cpython-2.6.5-nosslv2.patch + cd $(PLATFORM); $(CONFIGURE) + +$(LIBDYLIB): $(PLATFORM) + cd $(PLATFORM); $(MAKE) + +.installed-$(PLATFORM): $(LIBDYLIB) + cd $(PLATFORM); $(MAKE) install + install $(PLATFORM)/Parser/pgen $(NATIVEPREFIX)/bin + touch $@ + +clean: + rm -rf $(PLATFORM) .installed-$(PLATFORM) + +distclean:: + rm -rf $(PLATFORM) .installed-$(PLATFORM) |