mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-03 01:25:45 -04:00
Makefile: add doc target to make pretty HTML-ized versions of documents
Not adding to the all target of the Makefile (which is the default when make is invoked without parameters) as it would introduce an artificial build dependency on asciidoc; instead, "make doc" is to be used when you know you both want the *.html files and have asciidoc installed. Signed-off-by: Mike Swanson <mikeonthecomputer@gmail.com>
This commit is contained in:
parent
678cbd334a
commit
bb1a621e8d
1 changed files with 5 additions and 4 deletions
9
Makefile
9
Makefile
|
@ -43,9 +43,6 @@ OBJS = \
|
|||
$(WADS)/doom.wad \
|
||||
$(WADS)/freedm.wad
|
||||
|
||||
# disable this for now
|
||||
# $(WADS)/freedoom_hires.zip
|
||||
|
||||
all : $(OBJS)
|
||||
|
||||
subdirs:
|
||||
|
@ -172,8 +169,12 @@ $(WADS)/doom1.wad : wadinfo_sw.txt force
|
|||
dist : $(OBJS)
|
||||
scripts/makepkgs $(OBJS)
|
||||
|
||||
doc:
|
||||
asciidoc BUILD-SYSTEM
|
||||
asciidoc README
|
||||
|
||||
clean:
|
||||
rm -f deutex.log $(OBJS) \
|
||||
rm -f *.html deutex.log $(OBJS) \
|
||||
./wadinfo.txt ./wadinfo_sw.txt \
|
||||
./wadinfo_freedm.txt ./wadinfo_iwad.txt \
|
||||
./wadinfo_ult.txt \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue