source: src/Docs/Makefile@ d88f256a

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since d88f256a was 843054c2, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

licencing: seventh groups of files

  • Property mode set to 100644
File size: 690 bytes
Line 
1DIA = dia --nosplash
2TEX = latex
3DVIPS = dvips
4DVIPSFLAGS = -t landscape
5JUNK = .aux .log .dvi
6
7# DocBook macros
8# JADE=openjade
9# STYLEDIR=$(SGML_SHARE)/dsssl/docbook
10# STYLE=print/docbook.dsl
11# TARGET = tex
12
13DIAGRAMS = uml.dia
14DIAGRAMSOUT = $(DIAGRAMS:.dia=.eps)
15
16# SOURCES = intro.sgml mngmt.sgml pcap.sgml biblo.sgml conc.sgml
17
18.SUFFIXES : .dia .eps
19.dia.eps:
20 $(DIA) $< --export=$@
21
22%.dvi: %.tex
23 $(TEX) $<
24
25%.ps: %.dvi
26 $(DVIPS) $(DVIPSFLAGS) $< -o $@
27
28design.ps:
29
30# project.dvi: project.$(TARGET)
31# jadetex $<
32
33# project.$(TARGET):project.sgml $(DIAGRAMSOUT) $(SOURCES)
34# $(JADE) -t $(TARGET) -d $(STYLEDIR)/$(STYLE) project.sgml
35
36clean:
37 rm -f *.dvi *.tex *.ps *~ *.aux *.log
38
Note: See TracBrowser for help on using the repository browser.