--- /dev/null
+
+include ../Config.mk
+include ../makearch/$(ARCH)
+
+SUBDIRS = lefty-grace dirgraph prune
+FILES = dotmcl.pl gprof2dot.awk webdot.cgi
+
+all clean distclean:
+ (for i in ${SUBDIRS}; do (cd $$i; make $@); done)
+
+install :
+ (for i in ${SUBDIRS}; do (cd $$i; make $@); done)
+ $(MKPATH) $(BINDIR)
+ $(CP) ($FILES) $(BINDIR)
+
+clean :
+ true
+
+distclean :
+ true
--- /dev/null
+
+include ../../Config.mk
+include ../../makearch/$(ARCH)
+
+FILES = dirgraph.pl
+
+all :
+ true
+
+install:
+ $(MKPATH) $(BINDIR)
+ $(INSTALL) $(FILES) $(BINDIR)
+
+clean:
+ true
+
+distclean:
+ true
--- /dev/null
+
+include ../../Config.mk
+include ../../makearch/$(ARCH)
+
+FILES = dotty.lefty dotty_draw.lefty dotty_edit.lefty dotty_ui.lefty
+
+all :
+ true
+
+install:
+ $(MKPATH) $(LIBDIR)/lefty
+ $(INSTALL) $(FILES) $(LIBDIR)/lefty
+
+clean:
+ true
+
+distclean:
+ true
--- /dev/null
+# prune make file
+# Written by Emden R. Gansner (1 Mar 2002)
+ALL = prune
+all : $(ALL)
+
+include ../../Config.mk
+include ../../makearch/$(ARCH)
+
+INCS = -I. -I../.. -I../../tools/src -I../../agraph -I../../cdt
+
+DEFINES = -DHAVE_CONFIG_H
+
+OBJS = prune.o generic_list.o
+
+generic_list.o : generic_list.h
+
+GLIBS = -L../../agraph -L../../cdt -lagraph -lcdt
+LIBS = -L../../tools/src -lingraphs $(GLIBS)
+
+prune : $(OBJS)
+ $(CC) $(LDFLAGS) $(OBJS) $(LIBS) -o $@
+
+install : all
+ $(MKPATH) $(BINDIR)
+ $(CP) prune $(BINDIR)
+ $(MKPATH) $(MANDIR)
+ $(INSTALL) prune.1 $(MANDIR)
+
+clean :
+ $(RM) core *.o
+
+distclean : clean
+ $(RM) $(ALL)