]> 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/ast/CMakeLists.txt [new file with mode: 0644]

diff --git a/lib/ast/CMakeLists.txt b/lib/ast/CMakeLists.txt
new file mode 100644 (file)
index 0000000..886a0c8
--- /dev/null
@@ -0,0 +1,58 @@
+# $Id$ $Revision$
+## Process this file with cmake to produce Makefile
+
+INCLUDE_DIRECTORIES(
+       ${CMAKE_CURRENT_SOURCE_DIR}
+       ${CMAKE_SOURCE_DIR}
+       ${CMAKE_SOURCE_DIR}/sfio
+)
+
+
+########### next target ###############
+
+SET(ast_SRCS
+       pathpath.c
+       sfstr.h
+       chresc.c
+       chrtoi.c
+       error.c
+       fmtbuf.c
+       fmtesc.c
+       pathaccess.c
+       pathbin.c
+       pathcanon.c
+       pathcat.c
+       pathexists.c
+       pathfind.c
+       pathgetlink.c
+       strcopy.c
+       stresc.c
+       strmatch.c
+       strton.c
+       strerror.c
+)
+
+ADD_LIBRARY(ast STATIC ${ast_SRCS})
+
+
+########### install files ###############
+
+
+
+
+#original Makefile.am contents follow:
+
+## $Id$ $Revision$
+### Process this file with automake to produce Makefile.in
+#
+#AM_CPPFLAGS = -I$(top_srcdir)/lib/sfio
+#
+#noinst_HEADERS = align.h ast.h error.h hashkey.h
+#noinst_LTLIBRARIES = libast_C.la
+#
+#libast_C_la_SOURCES = pathpath.c sfstr.h chresc.c chrtoi.c error.c \
+#      fmtbuf.c fmtesc.c pathaccess.c pathbin.c pathcanon.c pathcat.c \
+#      pathexists.c pathfind.c pathgetlink.c \
+#      strcopy.c stresc.c strmatch.c strton.c strerror.c
+#
+#EXTRA_DIST = Makefile.old