diff options
author | midipix <writeonce@midipix.org> | 2019-10-05 17:11:23 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-05 17:14:15 +0000 |
commit | 19665f8afca591006af4e303825ef91825e4b8cd (patch) | |
tree | a9b4a1e44d430f50e13ae279f14e8c0ba59058de /project | |
parent | 69c50b98dac2d2fa2d6a43c603fef58ee73fa3ba (diff) | |
download | sbpython2-19665f8afca591006af4e303825ef91825e4b8cd.tar.bz2 sbpython2-19665f8afca591006af4e303825ef91825e4b8cd.tar.xz |
target-specific headers: added the install-pyhdr-osapi install target.
Diffstat (limited to 'project')
-rw-r--r-- | project/pyinst.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/project/pyinst.mk b/project/pyinst.mk index bf50414..c18fcd4 100644 --- a/project/pyinst.mk +++ b/project/pyinst.mk @@ -34,8 +34,14 @@ install-pyhdr: config.tag mkdir -p $(DESTDIR)/$(INCLUDEDIR)/$(PACKAGE) cp -p $(API_HEADERS) $(DESTDIR)/$(INCLUDEDIR)/$(PACKAGE) +# install-pyhdr-osapi +install-pyhdr-osapi: config.tag + mkdir -p $(DESTDIR)/$(INCLUDEDIR)/$(PACKAGE)/osapi + cp -p $(PYTHON_OSAPI_HEADERS) $(DESTDIR)/$(INCLUDEDIR)/$(PACKAGE)/osapi + install-shared: install-pyext install-shared: install-pyhdr +install-shared: install-pyhdr-osapi install-app: install-man install-app: install-app-extdir |