Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
334B

  1. HTML=$(patsubst %.txt,%.html,$(wildcard *.txt))
  2. all: $(HTML)
  3. # when each target of a multi-target rule has its own prereq
  4. # we use a static pattern rule.
  5. $(HTML): %.html: %.txt
  6. asciidoc -a toc2 $<
  7. TMP=/tmp/uthash-gh-pages
  8. stage:
  9. mkdir -p ${TMP}
  10. rm -if ${TMP}/*
  11. cp *.html *.css *.png ${TMP}
  12. .PHONY: clean
  13. clean:
  14. $(RM) $(HTML)