From: ellson Date: Fri, 23 Jun 2006 03:11:20 +0000 (+0000) Subject: Experimenting with cmake - which claims to replace autoconf,automake,libtool and... X-Git-Tag: LAST_LIBGRAPH~32^2~6372 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01153981c6045bcf55414c9812a76706fcc02ffd;p=graphviz Experimenting with cmake - which claims to replace autoconf,automake,libtool and be more portable --- diff --git a/cmd/lefty/examples/.cvsignore b/cmd/lefty/examples/.cvsignore index 282522db0..8cacbfb3f 100644 --- a/cmd/lefty/examples/.cvsignore +++ b/cmd/lefty/examples/.cvsignore @@ -1,2 +1,3 @@ Makefile Makefile.in +CMakeFiles CMakeTmp CMakeFiles CMakeCache.txt cmake_install.cmake diff --git a/cmd/lefty/examples/CMakeLists.txt b/cmd/lefty/examples/CMakeLists.txt new file mode 100644 index 000000000..e9228c2c1 --- /dev/null +++ b/cmd/lefty/examples/CMakeLists.txt @@ -0,0 +1,27 @@ +# $Id$ $Revision$ +## Process this file with cmake to produce Makefile + +########### install files ############### + +INSTALL_FILES(FILES + box.lefty + def.lefty + fractal.lefty + fractal2.lefty + slides.lefty + tree.lefty +) + + + +#original Makefile.am contents follow: + +## $Id$ $Revision$ +### Process this file with automake to produce Makefile.in +# +#leftydir = $(pkgdatadir)/lefty +# +#lefty_DATA = box.lefty def.lefty fractal.lefty fractal2.lefty \ +# slides.lefty tree.lefty +# +#EXTRA_DIST = $(lefty_DATA) diff --git a/cmd/lefty/os/.cvsignore b/cmd/lefty/os/.cvsignore index 9fb985742..2ae581798 100644 --- a/cmd/lefty/os/.cvsignore +++ b/cmd/lefty/os/.cvsignore @@ -4,3 +4,4 @@ .libs Makefile Makefile.in +CMakeFiles CMakeTmp CMakeFiles CMakeCache.txt cmake_install.cmake diff --git a/cmd/lefty/os/CMakeLists.txt b/cmd/lefty/os/CMakeLists.txt new file mode 100644 index 000000000..e12ad6485 --- /dev/null +++ b/cmd/lefty/os/CMakeLists.txt @@ -0,0 +1,15 @@ +# $Id$ $Revision$ +## Process this file with cmake to produce Makefile + +ADD_SUBDIRECTORY( unix ) +ADD_SUBDIRECTORY( mswin32 ) + + +#original Makefile.am contents follow: + +## $Id$ $Revision$ +### Process this file with automake to produce Makefile.in +# +#SUBDIRS = unix +# +#EXTRA_DIST = mswin32/lefty.mak mswin32/doinst mswin32/io.c