diff options
author | midipix <writeonce@midipix.org> | 2016-05-09 11:42:31 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-09 11:44:19 -0400 |
commit | eb1dc5158729c2d9a13a69ea9cc67e34719b2676 (patch) | |
tree | 2e81a3c907b42cbfe7c91ff6929188462fa9c5a2 /project | |
parent | 1ed3757b181b5153a79afebc65a14014a9a2278b (diff) | |
download | slibtool-eb1dc5158729c2d9a13a69ea9cc67e34719b2676.tar.bz2 slibtool-eb1dc5158729c2d9a13a69ea9cc67e34719b2676.tar.xz |
build system: Makefile.in, custom.mk: added --disable-frontend 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 8f9fabb..8e0bbc4 100644 --- a/project/custom.mk +++ b/project/custom.mk @@ -26,6 +26,18 @@ endif +ifeq ($(DISABLE_FRONTEND),yes) +app-tag: +package-install-app: +package-install-extras: +else +app-tag: package-app app.tag +package-install-app: install-app +package-install-extras: install-extras +endif + + + ifeq ($(ALL_STATIC),yes) package-app: static-app |