mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-02 07:25:45 -04:00
Makefile: replace hardcoded AsciiDoc commands for more generic ones
This commit is contained in:
parent
e558ec5de3
commit
ee27f645f2
1 changed files with 5 additions and 5 deletions
10
Makefile
10
Makefile
|
@ -96,17 +96,17 @@ $(FREEDOOM2): wadinfo_phase2.txt subdirs
|
||||||
rm -f $@
|
rm -f $@
|
||||||
$(DEUTEX) $(DEUTEX_ARGS) -iwad -lumps -patch -flats -sounds -musics -graphics -sprites -levels -build wadinfo_phase2.txt $@
|
$(DEUTEX) $(DEUTEX_ARGS) -iwad -lumps -patch -flats -sounds -musics -graphics -sprites -levels -build wadinfo_phase2.txt $@
|
||||||
|
|
||||||
doc: BUILD-SYSTEM.adoc COMPILING.adoc README.adoc
|
%.html: %.adoc
|
||||||
asciidoc BUILD-SYSTEM.adoc
|
asciidoc $<
|
||||||
asciidoc COMPILING.adoc
|
|
||||||
asciidoc README.adoc
|
doc: $(patsubst %.adoc,%.html,$(wildcard *.adoc))
|
||||||
|
|
||||||
DISTDOCS=COPYING CREDITS README.html
|
DISTDOCS=COPYING CREDITS 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) doc
|
dist: $(OBJS) 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)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue