]> 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

lib/twopigen/Makefile.old [new file with mode: 0644]
lib/vmalloc/Makefile.old [new file with mode: 0644]

diff --git a/lib/twopigen/Makefile.old b/lib/twopigen/Makefile.old
new file mode 100644 (file)
index 0000000..3cad082
--- /dev/null
@@ -0,0 +1,39 @@
+all:   libtwopi.a
+
+include ../../Config.mk
+include ../../makearch/$(ARCH)
+
+INCS = -I. -I../.. \
+       -I../common \
+       -I../neatogen \
+       -I../pack \
+       -I../gvrender \
+       -I../../pathplan \
+       -I../../graph \
+       -I../../cdt \
+       -I../../gd
+
+DEFINES = -DHAVE_CONFIG_H
+
+OBJS = twopiinit.o circle.o 
+
+HFILES = circle.h 
+
+libtwopi.a : $(OBJS)
+       $(RM) libtwopi.a
+       $(AR) cr libtwopi.a $(OBJS)
+       $(RANLIB) libtwopi.a
+
+$(OBJS) : $(HFILES)
+
+install: libtwopi.a
+       $(MKPATH) $(INCDIR)
+       $(INSTALL) circle.h $(INCDIR)
+       $(MKPATH) $(LIBDIR)
+       $(INSTALL) libtwopi.a $(LIBDIR)
+
+clean:
+       $(RM) *.o core
+
+distclean: clean
+       $(RM) *.a twopi lib*.so.*
diff --git a/lib/vmalloc/Makefile.old b/lib/vmalloc/Makefile.old
new file mode 100644 (file)
index 0000000..1e9362b
--- /dev/null
@@ -0,0 +1,54 @@
+#      libvmalloc.a old make makefile
+#      Written by Kiem-Phong Vo (03/18/1998)
+
+include ../../Config.mk
+include ../../makearch/$(ARCH)
+
+LOC_LIBDIR=    ../lib
+LOC_INCDIR=    ../include
+
+INCS = -I.
+
+HDRS=  vmalloc.h vmhdr.h
+SRCS=  malloc.c vmbest.c vmclear.c vmclose.c vmdcheap.c \
+       vmdisc.c vmdebug.c vmlast.c vmopen.c vmpool.c vmprivate.c vmregion.c \
+       vmset.c vmstat.c vmtrace.c vmprofile.c vmexit.c vmsegment.c vmwalk.c
+OBJS=  malloc.o vmbest.o vmclear.o vmclose.o vmdcheap.o \
+       vmdisc.o vmdebug.o vmlast.o vmopen.o vmpool.o vmprivate.o vmregion.o \
+       vmset.o vmstat.o vmtrace.o vmprofile.o vmexit.o vmsegment.o vmwalk.o \
+    vmstrdup.o
+
+all:   loc_install
+
+libvmalloc.a : ast_common.h FEATURE/vmalloc $(OBJS)
+       ar cr libvmalloc.a $(OBJS)
+       -(ranlib libvmalloc.a; exit 0) >/dev/null 2>&1
+
+$(OBJS) : ast_common.h
+
+#ast_common.h : features/common
+#      ../../iffe - set cc $(CC) $(CCMODE) $(CXFLAGS) : run features/common > ast_common.h
+
+ast_common.h : ../../cdt/ast_common.h
+       rm -f ast_common.h
+       $(LN) ../../cdt/ast_common.h .
+
+../../cdt/ast_common.h : ../../cdt/features/common
+       (cd ../../cdt; make ast_common.h)
+
+FEATURE/vmalloc : features/vmalloc
+       ../../iffe set cc $(CC) $(CCMODE) $(CXFLAGS) : run features/vmalloc
+
+loc_install : libvmalloc.a
+       $(MKPATH) $(LOC_INCDIR)
+       cp vmalloc.h $(LOC_INCDIR)
+       $(MKPATH) $(LOC_LIBDIR)
+       cp libvmalloc.a $(LOC_LIBDIR)
+       -(ranlib $(LOC_LIBDIR)/libvmalloc.a; exit 0) >/dev/null 2>&1
+
+install : loc_install
+
+clean :
+       -(rm ast_common.h $(OBJS) libvmalloc.a FEATURE/*; exit 0) >/dev/null 2>&1
+
+distclean : clean