mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
335957800b
DONT_BUILD. git-svn-id: https://svn.eduke32.com/eduke32@4113 1a8010ca-5511-0410-912e-c29ae57300e0
16 lines
532 B
Makefile
16 lines
532 B
Makefile
FILES=lunatic.html lunacon.html
|
|
|
|
# NOTE: the 'source-highlight-args' attribute is not present in the default
|
|
# AsciiDoc distribution. It has to be hacked into its
|
|
# filters/source/source-highlight-filter.conf like this:
|
|
#
|
|
# filter="source-highlight -f xhtml -s {language} (...)"
|
|
# -->
|
|
# filter="source-highlight {source-highlight-args} -f xhtml -s {language} (...)"
|
|
%.html: %.txt Makefile lunatic_sh.style
|
|
asciidoc -v -a source-highlight-args="--style-file=$(shell pwd)/lunatic_sh.style" $<
|
|
|
|
all: $(FILES)
|
|
|
|
clean:
|
|
rm -f $(FILES)
|