diff options
-rw-r--r-- | pkg/osx/GNUmakefile | 2 | ||||
-rw-r--r-- | pkg/win32/GNUmakefile | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/pkg/osx/GNUmakefile b/pkg/osx/GNUmakefile index b998f77e..f49d3932 100644 --- a/pkg/osx/GNUmakefile +++ b/pkg/osx/GNUmakefile @@ -6,6 +6,8 @@ include ../config.make +DOC_FILES += README.Strife + # Build so that the package will work on older versions. export MACOSX_DEPLOYMENT_TARGET=10.4 diff --git a/pkg/win32/GNUmakefile b/pkg/win32/GNUmakefile index cde43492..e84dbe18 100644 --- a/pkg/win32/GNUmakefile +++ b/pkg/win32/GNUmakefile @@ -24,13 +24,18 @@ $(ZIPS): $(DOOM_ZIP): staging-doom hook-doom $(HERETIC_ZIP): staging-heretic $(HEXEN_ZIP): staging-hexen -$(STRIFE_ZIP): staging-strife +$(STRIFE_ZIP): staging-strife hook-strife # Special hooks to custom modify files for particular games. hook-doom: staging-doom cp $(TOPLEVEL)/NOT-BUGS $</NOT-BUGS.txt +# Chocolate Strife has its own custom README file: + +hook-strife: staging-strife + cp $(TOPLEVEL)/README.Strife $</README.txt + # Build up a staging dir for a particular game. staging-%: |