SCM Repository
View of /branches/vis15/doc/src/man/Makefile.in
Parent Directory
|
Revision Log
Revision 5221 -
(download)
(annotate)
Thu Jul 27 19:41:26 2017 UTC (4 years, 9 months ago) by jhr
File size: 1251 byte(s)
Thu Jul 27 19:41:26 2017 UTC (4 years, 9 months ago) by jhr
File size: 1251 byte(s)
updating documentation
# Makefile for diderot man pages # # This code is part of the Diderot Project (http://diderot-language.cs.uchicago.edu) # # COPYRIGHT (c) 2017 The University of Chicago # All rights reserved. # SHELL = @SHELL@ @SET_MAKE@ ASCIIDOCTOR = @ASCIIDOCTOR@ ATTRIBUTES = -a version=1.0 # set attributes for conditional parts of the documentation # ifeq (@DEBUGGER_ENABLED@,true) ATTRIBUTES += -a debugger_enabled endif ifeq (@CL_ENABLED@,true) ATTRIBUTES += -a opencl_enabled endif ifeq (@CUDA_ENABLED@,true) ATTRIBUTES += -a cuda_enabled endif ATTRIBUTES += -a teem_dir="@TEEM_DIR@" MANPAGES = diderotc.1 diderot-api.5 HTML = $(patsubst %,%.html,$(MANPAGES)) .PHONY: all all: $(MANPAGES) $(HTML) diderotc.1: diderotc.1.txt $(ASCIIDOCTOR) $(ATTRIBUTES) -b manpage diderotc.1.txt diderot-api.5: diderot-api.5.txt $(ASCIIDOCTOR) $(ATTRIBUTES) -b manpage diderot-api.5.txt diderotc.1.html: diderotc.1.txt $(ASCIIDOCTOR) $(ATTRIBUTES) -b html5 diderotc.1.txt diderot-api.5.html: diderot-api.5.txt $(ASCIIDOCTOR) $(ATTRIBUTES) -b html5 diderot-api.5.txt #################### Cleanup #################### CLEAN_SUBDIRS = CLEAN_FILES = $(MANPAGES) $(HTML) DISTCLEAN_FILES += Makefile DEVCLEAN_FILES = include @DIDEROT_MKDIR@/clean-rules.gmk
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |