mirror of
https://github.com/freedoom/freedoom.git
synced 2025-08-31 20:16:55 -04:00
Include *.txt and DOS-format COPYING and CREDITS files in zips.
This makes it far easier to open the files correctly in Windows Notepad.
This commit is contained in:
parent
b47823d457
commit
80cbab8c84
2 changed files with 11 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,4 +1,6 @@
|
|||
*.html
|
||||
/COPYING.txt
|
||||
/CREDITS.txt
|
||||
deutex.log
|
||||
graphics/titlepic/fd?title.gif
|
||||
graphics/titlepic/m_*.gif
|
||||
|
|
11
Makefile
11
Makefile
|
@ -77,12 +77,18 @@ $(FREEDOOM2): wadinfo_phase2.txt subdirs
|
|||
|
||||
doc: $(patsubst %.adoc,%.html,$(wildcard *.adoc))
|
||||
|
||||
DISTDOCS=COPYING CREDITS README.html
|
||||
COPYING.txt: COPYING.adoc
|
||||
unix2dos --add-bom --newfile $< $@
|
||||
|
||||
CREDITS.txt: CREDITS
|
||||
unix2dos --add-bom --newfile $< $@
|
||||
|
||||
DISTDOCS=COPYING.txt CREDITS.txt README.html
|
||||
|
||||
.PHONY: dist
|
||||
|
||||
# Due to convoluted reasons, the WADs must directly proceed the game name.
|
||||
dist: $(OBJS) README.html
|
||||
dist: $(OBJS) COPYING.txt CREDITS.txt README.html
|
||||
VERSION=$(VERSION) scripts/makepkgs freedm $(FREEDM) $(DISTDOCS)
|
||||
VERSION=$(VERSION) scripts/makepkgs freedoom $(FREEDOOM1) $(FREEDOOM2) $(DISTDOCS)
|
||||
|
||||
|
@ -96,6 +102,7 @@ endif
|
|||
|
||||
clean:
|
||||
rm -f *.html deutex.log $(OBJS) \
|
||||
./COPYING.txt ./CREDITS.txt \
|
||||
./wadinfo.txt ./wadinfo_phase1.txt \
|
||||
./wadinfo_phase2.txt ./wadinfo_freedm.txt \
|
||||
./lumps/freedoom.lmp \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue