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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
# SCCS-info %W% %E%
#
# /*--------------------------------------------------------------------*/
# /* */
# /* VCG : Visualization of Compiler Graphs */
# /* -------------------------------------- */
# /* */
# /* file: Makefile */
# /* version: 1.00.00 */
# /* creation: 1.4.1993 */
# /* author: I. Lemke (...-Version 0.99.99) */
# /* G. Sander (Version 1.00.00-...) */
# /* Universitaet des Saarlandes, W-66041 Saarbruecken */
# /* ESPRIT Project #5399 Compare */
# /* description: Makefile of the documentation */
# /* D 3.12.1/1: The visualisation of compiler graphs */
# /* status: in work */
# /* */
# /*--------------------------------------------------------------------*/
#
# $Id$
#
# $Log$
#
#========================= CHANGE AREA =========================
SHELL = /bin/sh
RM = /bin/rm
CP = /bin/cp
# RCS check out shellscript (normally not used)
CHECKOUT = co
# RCS check edit shellscript (normally not used)
CHECKEDIT = ce
# RCS check in shellscript (normally not used)
CHECKIN = ci
#==================== END OF CHANGE AREA ======================
#-------------------------------------------------------------------
# The LaTeX source files
SOURCES = README README.SYS README.ANNOUNCE README.ANNOUNCE2 README.ANNOUNCE3
DISTFILES = visual.ps vcg.ps pbm2hp.ps pbmrot90.ps pbmshift.ps \
vcgdemomaker.ps \
grammar.txt
#--------------------------------------------------------------------
all:
long:
short:
# Please, never do a "make grammar".
# This is only for me. (GS)
#
grammar:
(cd ../docsrc/docutils; \
extract_gramm ../../src/grammar.pgs; \
prepare_gramm ../../src/grammar.pgs.txt > ../../doc/grammar.txt)
# RCS Version control stuff
$(SOURCES):
$(CHECKOUT) $@
checkout: Makefile $(SOURCES)
checkedit: Makefile
$(CHECKEDIT) $(SOURCES)
checkin: Makefile
$(CHECKIN) $(SOURCES)
clean:
$(RM) -f *.aux *.toc *.log *.lof *.lot *.spell tmp* core
veryclean: clean
$(RM) -f *.dvi
targetclean: veryclean
distclean: veryclean targetclean
$(RM) -f core
install:
depend:
tar: Makefile $(SOURCES) $(DISTFILES)
tar -cf doc.tar Makefile $(SOURCES) $(DISTFILES)
dist: grammar tar
|