]> granicus.if.org Git - graphviz/commitdiff
Experimenting with cmake - which claims to replace autoconf,automake,libtool and...
authorellson <devnull@localhost>
Fri, 23 Jun 2006 03:11:22 +0000 (03:11 +0000)
committerellson <devnull@localhost>
Fri, 23 Jun 2006 03:11:22 +0000 (03:11 +0000)
lib/agutil/CMakeLists.txt [new file with mode: 0644]

diff --git a/lib/agutil/CMakeLists.txt b/lib/agutil/CMakeLists.txt
new file mode 100644 (file)
index 0000000..03fcdb2
--- /dev/null
@@ -0,0 +1,40 @@
+# $Id$ $Revision$
+## Process this file with cmake to produce Makefile
+
+INCLUDE_DIRECTORIES(
+       ${CMAKE_CURRENT_SOURCE_DIR}
+       ${CMAKE_SOURCE_DIR}
+       ${CMAKE_SOURCE_DIR}/lib/agraph
+       ${CMAKE_SOURCE_DIR}/lib/cdt
+)
+
+
+########### next target ###############
+
+SET(agutil_SRCS
+       dynattr.c
+       nodeq.c
+)
+
+ADD_LIBRARY(agutil STATIC ${agutil_SRCS})
+
+
+########### install files ###############
+
+
+
+
+#original Makefile.am contents follow:
+
+## $Id$ $Revision$
+### Process this file with automake to produce Makefile.in
+#
+#AM_CPPFLAGS = \
+#        -I$(top_srcdir) \
+#        -I$(top_srcdir)/lib/agraph \
+#        -I$(top_srcdir)/lib/cdt
+#
+#noinst_HEADERS = agutil.h
+#noinst_LTLIBRARIES = libagutil_C.la
+#
+#libagutil_C_la_SOURCES = dynattr.c nodeq.c agutil.h