summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 15 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index dfe9c4b3..fe444b37 100644
--- a/Makefile
+++ b/Makefile
@@ -1154,6 +1154,9 @@ endif
NAKED_TARGETS=$(shell echo $(TARGETS) | sed -e "s!$(B)/!!g")
+MACOSX_TARGET_STRING=$(shell if [ "$(B)" == "$(BR)" ]; then echo "release"; elif [ "$(B)" == "$(BD)" ]; then echo "debug"; fi)
+MACOSX_MAKE_APP=@if [ -x "./make-macosx-app.sh" ]; then "./make-macosx-app.sh" $(MACOSX_TARGET_STRING) $(ARCH); fi
+
print_list=@for i in $(1); \
do \
echo " $$i"; \
@@ -1208,9 +1211,18 @@ ifneq ($(TARGETS),)
endif
$(B).zip: $(TARGETS)
-ifdef ARCHIVE
- rm -f $@
- (cd $(B) && zip -r9 ../../$@ $(NAKED_TARGETS))
+ifeq ($(PLATFORM),darwin)
+ ifdef ARCHIVE
+ $(call MACOSX_MAKE_APP)
+ @rm -f $@
+ @(if [ -d "$(B)/tremulous.app" ]; then cd $(B) && zip --symlinks -r9 ../../$@ `find "tremulous.app" -print | sed -e "s!$(B)/!!g"`; fi)
+ endif
+endif
+ifneq ($(PLATFORM),darwin)
+ ifdef ARCHIVE
+ @rm -f $@
+ @(cd $(B) && zip -r9 ../../$@ $(NAKED_TARGETS))
+ endif
endif
makedirs: