From: erg Date: Thu, 28 Jul 2005 22:35:32 +0000 (+0000) Subject: Change old makefiles to reflect move of plugins into lib directory X-Git-Tag: LAST_LIBGRAPH~32^2~7360 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59c287d48be39eabe8c3eb155ea9ac14869b58cb;p=graphviz Change old makefiles to reflect move of plugins into lib directory --- diff --git a/Makefile.old b/Makefile.old index 162f7e59f..4956f7eb4 100644 --- a/Makefile.old +++ b/Makefile.old @@ -1,4 +1,4 @@ -SUBDIRS = lib plugin cmd +SUBDIRS = lib cmd all install clean distclean : (for i in ${SUBDIRS}; do (cd $$i; make $@); done) diff --git a/lib/Makefile.old b/lib/Makefile.old index 47420757b..da1e7e09d 100644 --- a/lib/Makefile.old +++ b/lib/Makefile.old @@ -1,5 +1,5 @@ -SUBDIRS = cdt graph agraph gd pathplan vmalloc sfio ast expr circogen \ - dotgen fdpgen neatogen pack twopigen common gvc ingraphs +SUBDIRS = cdt graph agraph gd pathplan agutil sfio vmalloc ast circogen \ + dotgen fdpgen neatogen pack twopigen plugin common gvc ingraphs expr all install clean : (for i in ${SUBDIRS}; do (cd $$i; make $@); done) diff --git a/lib/agutil/Makefile.old b/lib/agutil/Makefile.old new file mode 100644 index 000000000..7d853eb0c --- /dev/null +++ b/lib/agutil/Makefile.old @@ -0,0 +1,34 @@ +all: libagutil.a +ROOT=../.. +include $(ROOT)/Config.mk +include $(ROOT)/makearch/$(ARCH) + +INCS = -I. \ + -I$(ROOT) \ + -I../agraph \ + -I../cdt + +DEFINES = -DHAVE_CONFIG_H + +HDRS = agutil.h + +OBJS = dynattr.o nodeq.o + +libagutil.a : $(OBJS) + $(RM) libagutil.a + $(AR) cr libagutil.a $(OBJS) + $(RANLIB) libagutil.a + +install: libagutil.a + $(MKPATH) $(INCDIR) + $(INSTALL) agutil.h $(INCDIR) + $(MKPATH) $(LIBDIR) + $(INSTALL) libagutil.a $(LIBDIR) + +$(OBJS) : agutil.h + +clean: + $(RM) core *.o + +distclean: clean + $(RM) *.a ptest diff --git a/lib/gvc/Makefile.old b/lib/gvc/Makefile.old index f0c4c66ae..24c495e62 100644 --- a/lib/gvc/Makefile.old +++ b/lib/gvc/Makefile.old @@ -17,7 +17,7 @@ HDRS = gvc.h gvcint.h gvcproc.h gvplugin_render.h gvplugin_device.h \ gvplugin_layout.h gvplugin_textlayout.h \ gvplugin_usershape.h gvplugin.h -OBJS = gvrender.o gvlayout.o gvdevice.o gvcontext.o gvjobs.o \ +OBJS = builtins.o gvrender.o gvlayout.o gvdevice.o gvcontext.o gvjobs.o \ gvplugin.o gvconfig.o gvevent.o gvtextlayout.o gvusershape.o gvc.o libgvc.a : $(OBJS)