Include documentation files in package.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 1787
This commit is contained in:
parent
c94870783a
commit
dfff86ebef
1 changed files with 9 additions and 1 deletions
|
|
@ -3,6 +3,14 @@ include config.make
|
|||
|
||||
STAGING_DIR=staging
|
||||
DMG=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).dmg
|
||||
DOC_FILES=\
|
||||
README \
|
||||
COPYING \
|
||||
ChangeLog \
|
||||
NEWS \
|
||||
BUGS \
|
||||
CMDLINE \
|
||||
TODO
|
||||
|
||||
ifndef GNUSTEP_MAKEFILES
|
||||
|
||||
|
|
@ -25,7 +33,7 @@ $(STAGING_DIR): launcher
|
|||
cp Info.plist "$(APP_DIR)/Contents/"
|
||||
cp launcher "$(APP_DIR)/Contents/MacOS/"
|
||||
# TODO: copy Doom and setup binaries into app dir
|
||||
# TODO: copy other documentation into staging dir
|
||||
for d in $(DOC_FILES); do cp ../../$$d $(STAGING_DIR)/; done
|
||||
find $(STAGING_DIR) -name .svn -delete -exec rm -rf {} \; || true
|
||||
|
||||
clean : launcher_clean
|
||||
|
|
|
|||
Loading…
Reference in a new issue