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
|
# 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 for the examples */
# /* status: in work */
# /* */
# /*--------------------------------------------------------------------*/
#
# $Id$
#
# $Log$
#
#========================= CHANGE AREA =========================
# Please update the change area according to your system, if you
# want to call this Makefile directly
# RCS check out shellscript
CHECKOUT = co
# RCS check edit shellscript
CHECKEDIT = ce
# RCS check in shellscript
CHECKIN = ci
# Remove File
RM = /bin/rm
# Copy Files
CP = /bin/cp
#==================== END OF CHANGE AREA ======================
#-------------------------- Files ------------------------------
SOURCES = README anchors.vcg annot1.vcg annot2.vcg ccmir.vcg \
civ.vcg colors.vcg forms.vcg tstree.vcg levels.vcg \
hsort.vcg hunsort.vcg forms2.vcg shells.vcg xerox.vcg\
softmain.vcg tree1.vcg tree2.vcg morecol.vcg \
fishex2a.vcg fishex2b.vcg fishex3a.vcg fishex3b.vcg \
softmain2.vcg fishex3c.vcg charset.vcg flchrt.vcg \
cfg.vcg structs.vcg pshar1.vcg pshar2.vcg pshar3.vcg \
pshar4.vcg
#-------------------------- Rules ------------------------------
all: install
$(SOURCES):
$(CHECKOUT) $@
install:
makefiles: Makefile
# Cleanup rules
#
clean: makefiles
veryclean: clean targetclean
targetclean: makefiles
distclean: veryclean targetclean
$(RM) -f core
# Auxiliary rules
#
depend:
checkout: Makefile $(SOURCES)
checkedit: Makefile
$(CHECKEDIT) $(SOURCES)
checkin: Makefile
$(CHECKIN) $(SOURCES)
tar: Makefile $(SOURCES)
tar -cf expl.tar Makefile $(SOURCES)
dist: tar
# DO NOT DELETE THIS LINE -- make depend depends on it.
|