diff options
author | midipix <writeonce@midipix.org> | 2016-05-09 11:42:31 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-09 22:04:01 -0400 |
commit | 54c1e4ea1a3b372275d4b02374fae49c5092bafe (patch) | |
tree | 5ab5762e648ba872d7a32132eb904c822b244b11 /project | |
parent | b9a8a240d0e27094ebaf3b9b26df696303cf6d13 (diff) | |
download | sofort-54c1e4ea1a3b372275d4b02374fae49c5092bafe.tar.bz2 sofort-54c1e4ea1a3b372275d4b02374fae49c5092bafe.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 |