diff options
Diffstat (limited to 'pkg/osx/GNUmakefile')
-rw-r--r-- | pkg/osx/GNUmakefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile index 4a0da504..b998f77e 100644 --- a/pkg/osx/GNUmakefile +++ b/pkg/osx/GNUmakefile @@ -99,9 +99,10 @@ $(STAGING_DIR): launcher $(TOPLEVEL_DOCS) mkdir -p "$(APP_BIN_DIR)/man/man5" "$(APP_BIN_DIR)/man/man6" cp $(TOPLEVEL)/man/*.5 "$(APP_BIN_DIR)/man/man5" cp $(TOPLEVEL)/man/*.6 "$(APP_BIN_DIR)/man/man6" - cp $(TOPLEVEL)/man/CMDLINE.doom $(TOPLEVEL)/man/CMDLINE.heretic \ - $(TOPLEVEL)/man/CMDLINE.hexen $(TOPLEVEL)/man/CMDLINE.strife \ - "$(APP_DOC_DIR)" + for game in doom heretic hexen strife; do \ + cp $(TOPLEVEL)/man/CMDLINE.$$game \ + "$(APP_DOC_DIR)/CMDLINE-$$game"; \ + done cp disk/dir.DS_Store $(STAGING_DIR)/.DS_Store cp disk/background.png $(STAGING_DIR)/background.png |