1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
.PHONY : mostlyclean-local-check
docdir = $(datadir)/doc/theme-d-doc
doc_DATA = \
theme-d-language-manual.pdf \
theme-d-standard-library-reference.pdf \
theme-d-translator-types.pdf \
theme-d-user-guide.pdf
dist_man_MANS = \
get-theme-d-config-var.1 \
run-theme-d-program.1 \
run-theme-d-program-m.1 \
run-split-theme-d-program.1 \
setup-theme-d-test-env.1 \
setup-theme-d-bootstrap-env.1 \
theme-d-compile.1 \
theme-d-link.1 \
compute-theme-d-pcode-deps.1 \
compute-theme-d-module-deps.1 \
compute-theme-d-program-deps.1
mostlyclean-local : mostlyclean-local-check
mostlyclean-local-check :
-rm *~
-rm *.aux *.log *.toc
|