]> granicus.if.org Git - graphviz/commitdiff
add Makefile.old that were ignored by the import operation
authorellson <devnull@localhost>
Thu, 23 Dec 2004 04:24:52 +0000 (04:24 +0000)
committerellson <devnull@localhost>
Thu, 23 Dec 2004 04:24:52 +0000 (04:24 +0000)
rm libltdl generated files

contrib/Makefile.old [new file with mode: 0644]
contrib/dirgraph/Makefile.old [new file with mode: 0644]
contrib/lefty-grace/Makefile.old [new file with mode: 0644]
contrib/prune/Makefile.old [new file with mode: 0644]

diff --git a/contrib/Makefile.old b/contrib/Makefile.old
new file mode 100644 (file)
index 0000000..0f3dca3
--- /dev/null
@@ -0,0 +1,20 @@
+
+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
diff --git a/contrib/dirgraph/Makefile.old b/contrib/dirgraph/Makefile.old
new file mode 100644 (file)
index 0000000..1ae694f
--- /dev/null
@@ -0,0 +1,18 @@
+
+include ../../Config.mk
+include ../../makearch/$(ARCH)
+
+FILES = dirgraph.pl
+
+all :
+       true
+
+install:
+       $(MKPATH) $(BINDIR)
+       $(INSTALL) $(FILES) $(BINDIR)
+
+clean:
+       true
+
+distclean:
+       true
diff --git a/contrib/lefty-grace/Makefile.old b/contrib/lefty-grace/Makefile.old
new file mode 100644 (file)
index 0000000..8304ac8
--- /dev/null
@@ -0,0 +1,18 @@
+
+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
diff --git a/contrib/prune/Makefile.old b/contrib/prune/Makefile.old
new file mode 100644 (file)
index 0000000..e5bd749
--- /dev/null
@@ -0,0 +1,33 @@
+#   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)