22 lines
531 B
Makefile
22 lines
531 B
Makefile
MIRROR_FROM_REP_DIR = lib/mk/python3.inc \
|
|
lib/mk/spec/x86_64/python3.mk \
|
|
src/lib/python3/config.c
|
|
|
|
content: include $(MIRROR_FROM_REP_DIR) src/lib/python3/target.mk LICENSE
|
|
|
|
$(MIRROR_FROM_REP_DIR):
|
|
$(mirror_from_rep_dir)
|
|
|
|
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/python3)
|
|
|
|
include:
|
|
cp -r $(REP_DIR)/include/python3 $@/
|
|
|
|
src/lib/python3/target.mk:
|
|
mkdir -p src/lib/python3
|
|
cp -r $(PORT_DIR)/src/lib/python3/* src/lib/python3
|
|
echo "LIBS = python3" > $@
|
|
|
|
LICENSE:
|
|
cp $(PORT_DIR)/src/lib/python3/LICENSE $@
|