diff options
author | midipix <writeonce@midipix.org> | 2016-05-07 12:01:24 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-11 00:22:44 -0500 |
commit | bcd9569be405f7f68be3aa596c0eff72e59301cc (patch) | |
tree | 6e98a2906a9c2b36613b2d4066002185d23caa12 /project | |
parent | e1d5016d3950bd45ec9e1d9900b78e80b459c89a (diff) | |
download | mdso-bcd9569be405f7f68be3aa596c0eff72e59301cc.tar.bz2 mdso-bcd9569be405f7f68be3aa596c0eff72e59301cc.tar.xz |
build system: project: added custom header installation support.
Diffstat (limited to 'project')
-rw-r--r-- | project/custom.mk | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/project/custom.mk b/project/custom.mk index 3845121..8f9fabb 100644 --- a/project/custom.mk +++ b/project/custom.mk @@ -50,3 +50,15 @@ app-tag: PACKAGE_APP = $(DEFAULT_APP) app.tag: $(DEFAULT_APP) endif + + + +ifeq ($(CUSTOM_INSTALL_HEADERS),yes) + +install-headers:install-headers-custom + +else + +install-headers:install-headers-default + +endif |