mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Readded rule to create nextstep bundles which had been accidentally lost
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@8347 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9974ee9424
commit
44d9d637f8
1 changed files with 12 additions and 0 deletions
12
bundle.make
12
bundle.make
|
@ -207,6 +207,18 @@ build-macosx-bundle :: $(BUNDLE_DIR_NAME)/Contents \
|
|||
$(BUNDLE_DIR_NAME)/Contents/Resources \
|
||||
$(BUNDLE_DIR_NAME)/Contents/Info.plist
|
||||
|
||||
# NeXTstep bundles
|
||||
$(BUNDLE_DIR_NAME)/Resources/Info.plist: $(BUNDLE_DIR_NAME)/Resources
|
||||
@(echo "{"; echo ' NOTE = "Automatically generated, do not edit!";'; \
|
||||
echo " NSExecutable = \"$(GNUSTEP_TARGET_LDIR)/$(BUNDLE_NAME)${BUNDLE_OBJ_EXT}\";"; \
|
||||
if [ "$(MAIN_MODEL_FILE)" = "" ]; then \
|
||||
echo " NSMainNibFile = \"\";"; \
|
||||
else \
|
||||
echo " NSMainNibFile = \"`echo $(MAIN_MODEL_FILE) | sed 's/.gmodel//'`\";"; \
|
||||
fi; \
|
||||
echo " NSPrincipalClass = \"$(PRINCIPAL_CLASS)\";"; \
|
||||
echo "}") >$@
|
||||
|
||||
# GNUstep bundles
|
||||
$(BUNDLE_DIR_NAME)/Resources/Info-gnustep.plist: $(BUNDLE_DIR_NAME)/Resources
|
||||
@(echo "{"; echo ' NOTE = "Automatically generated, do not edit!";'; \
|
||||
|
|
Loading…
Reference in a new issue