diff options
author | midipix <writeonce@midipix.org> | 2016-05-07 12:01:24 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-07 12:05:53 -0400 |
commit | 8dc59efd18e59f13d3bff2c9f6779d3c965b7ba7 (patch) | |
tree | abe4a952f07db154ea0c906a976010de220ec2df /project | |
parent | 9160dd1d72d39cdcf7c8c656783a2f65a1246885 (diff) | |
download | sofort-8dc59efd18e59f13d3bff2c9f6779d3c965b7ba7.tar.bz2 sofort-8dc59efd18e59f13d3bff2c9f6779d3c965b7ba7.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 |