]> granicus.if.org Git - graphviz/commitdiff
Add new makefile.old`
authorerg <devnull@localhost>
Fri, 29 May 2009 23:16:46 +0000 (23:16 +0000)
committererg <devnull@localhost>
Fri, 29 May 2009 23:16:46 +0000 (23:16 +0000)
lib/osage/Makefile.old [new file with mode: 0644]

diff --git a/lib/osage/Makefile.old b/lib/osage/Makefile.old
new file mode 100644 (file)
index 0000000..d167781
--- /dev/null
@@ -0,0 +1,39 @@
+all:   libosage.a
+ROOT=../..
+include $(ROOT)/Config.mk
+include $(ROOT)/makearch/$(ARCH)
+
+INCS = -I. -I$(ROOT) \
+       -I../common \
+       -I../neatogen \
+       -I../sparse \
+       -I../pack \
+       -I../gvc \
+       -I../fdpgen \
+       -I../pathplan \
+       -I../graph \
+       -I../cdt \
+       -I../gd
+
+DEFINES = -DHAVE_CONFIG_H
+
+OBJS = osageinit.o
+
+HFILES = osage.h 
+
+libosage.a : $(OBJS)
+       $(RM) libosage.a
+       $(AR) cr libosage.a $(OBJS)
+       $(RANLIB) libosage.a
+
+$(OBJS) : $(HFILES) ../common/types.h
+
+install: libosage.a
+       $(MKPATH) $(LIBDIR)
+       $(INSTALL) libosage.a $(LIBDIR)
+
+clean:
+       $(RM) *.o core
+
+distclean: clean
+       $(RM) *.a lib*.so.*