summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Henrik Brautaset Aronsen <subsurface@henrik.synth.no>2013-02-09 10:36:02 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-02-09 09:44:51 -0800
commiteb7acc1d96a3aa627f1a0e882445e804f5d12d49 (patch)
treee40686aacf19f94129a16b1d2cb61df2c5df6abc /Makefile
parentfe87ed182ed5150518ed498adee3e511662b84e0 (diff)
downloadsubsurface-eb7acc1d96a3aa627f1a0e882445e804f5d12d49.tar.gz
Add XSLT support for the macosx install and bundle targets
Works like it should for the install-macosx target. I haven't tested the create-macosx-bundle target, but it shouldn't be any different. Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index ba8fdc0f6..ca6041642 100644
--- a/Makefile
+++ b/Makefile
@@ -190,6 +190,11 @@ install-macosx: $(NAME)
$(INSTALL) -d -m 755 $(MACOSXINSTALL)/Contents/Resources/$$LOC; \
$(INSTALL) $$LOC/subsurface.mo $(MACOSXINSTALL)/Contents/Resources/$$LOC/subsurface.mo; \
done
+ @-if test ! -z "$(XSLT)"; then \
+ $(INSTALL) -d -m 755 $(MACOSXINSTALL)/Contents/Resources/xslt; \
+ $(INSTALL) -m 644 $(XSLTFILES) $(MACOSXINSTALL)/Contents/Resources/xslt/; \
+ fi
+
create-macosx-bundle: $(NAME)
$(INSTALL) -d -m 755 $(MACOSXSTAGING)/Contents/Resources
@@ -203,6 +208,10 @@ create-macosx-bundle: $(NAME)
$(INSTALL) -d -m 755 $(MACOSXSTAGING)/Contents/Resources/$$LOC; \
$(INSTALL) $$LOC/subsurface.mo $(MACOSXSTAGING)/Contents/Resources/$$LOC/subsurface.mo; \
done
+ @-if test ! -z "$(XSLT)"; then \
+ $(INSTALL) -d -m 755 $(MACOSXSTAGING)/Contents/Resources/xslt; \
+ $(INSTALL) -m 644 $(XSLTFILES) $(MACOSXSTAGING)/Contents/Resources/xslt/; \
+ fi
$(GTK_MAC_BUNDLER) packaging/macosx/subsurface.bundle
install-cross-windows: $(NAME)