mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-01 22:25:46 -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
9c13e2fb37
commit
7c3d101327
2 changed files with 11 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,4 +1,6 @@
|
||||||
*.html
|
*.html
|
||||||
|
/COPYING.txt
|
||||||
|
/CREDITS.txt
|
||||||
deutex.log
|
deutex.log
|
||||||
graphics/titlepic/fd?title.gif
|
graphics/titlepic/fd?title.gif
|
||||||
graphics/titlepic/m_*.gif
|
graphics/titlepic/m_*.gif
|
||||||
|
|
11
Makefile
11
Makefile
|
@ -77,12 +77,18 @@ $(FREEDOOM2): wadinfo_phase2.txt subdirs
|
||||||
|
|
||||||
doc: $(patsubst %.adoc,%.html,$(wildcard *.adoc))
|
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
|
.PHONY: dist
|
||||||
|
|
||||||
# Due to convoluted reasons, the WADs must directly proceed the game name.
|
# 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 freedm $(FREEDM) $(DISTDOCS)
|
||||||
VERSION=$(VERSION) scripts/makepkgs freedoom $(FREEDOOM1) $(FREEDOOM2) $(DISTDOCS)
|
VERSION=$(VERSION) scripts/makepkgs freedoom $(FREEDOOM1) $(FREEDOOM2) $(DISTDOCS)
|
||||||
|
|
||||||
|
@ -96,6 +102,7 @@ endif
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.html deutex.log $(OBJS) \
|
rm -f *.html deutex.log $(OBJS) \
|
||||||
|
./COPYING.txt ./CREDITS.txt \
|
||||||
./wadinfo.txt ./wadinfo_phase1.txt \
|
./wadinfo.txt ./wadinfo_phase1.txt \
|
||||||
./wadinfo_phase2.txt ./wadinfo_freedm.txt \
|
./wadinfo_phase2.txt ./wadinfo_freedm.txt \
|
||||||
./lumps/freedoom.lmp \
|
./lumps/freedoom.lmp \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue