extpython/src/Makefile

19 lines
391 B
Makefile
Raw Normal View History

2018-10-18 22:07:44 -07:00
#!/usr/bin/make -f
PY3_SRC=./cpython/
2019-05-31 07:41:20 -07:00
PY3_CONFFLAGS=--prefix=$(DESTDIR)/opt/extpython/3.7 --with-ensurepip=install
2018-10-18 22:07:44 -07:00
all:
cd $(PY3_SRC) && \
./configure $(PY3_CONFFLAGS) && \
make -j8
install:
cd $(PY3_SRC) && \
make install
2019-05-31 07:41:20 -07:00
# $(DESTDIR)/opt/extpython/3.7.0/bin/python3 $(DESTDIR)/opt/extpython/3.7/bin/pip3 install -r requirements.txt
2018-10-18 22:07:44 -07:00
clean:
cd $(PY3_SRC) && \
make clean || true