From 490d2161987af4c3bc90a05df38dcbf3f51e99e9 Mon Sep 17 00:00:00 2001 From: ellson Date: Fri, 23 Jun 2006 03:11:25 +0000 Subject: [PATCH] Experimenting with cmake - which claims to replace autoconf,automake,libtool and be more portable --- tclpkg/tkspline/demo/.cvsignore | 1 + tclpkg/tkspline/demo/CMakeLists.txt | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 tclpkg/tkspline/demo/CMakeLists.txt diff --git a/tclpkg/tkspline/demo/.cvsignore b/tclpkg/tkspline/demo/.cvsignore index 282522db0..8cacbfb3f 100644 --- a/tclpkg/tkspline/demo/.cvsignore +++ b/tclpkg/tkspline/demo/.cvsignore @@ -1,2 +1,3 @@ Makefile Makefile.in +CMakeFiles CMakeTmp CMakeFiles CMakeCache.txt cmake_install.cmake diff --git a/tclpkg/tkspline/demo/CMakeLists.txt b/tclpkg/tkspline/demo/CMakeLists.txt new file mode 100644 index 000000000..f082c40f6 --- /dev/null +++ b/tclpkg/tkspline/demo/CMakeLists.txt @@ -0,0 +1,26 @@ +# $Id$ $Revision$ +## Process this file with cmake to produce Makefile + +########### install files ############### + +INSTALL_FILES(FILES + spline +) +INSTALL_FILES(FILES + spline.README +) + + +#original Makefile.am contents follow: + +## $Id$ $Revision$ +### Process this file with automake to produce Makefile.in +# +#demodir = $(pkgdatadir)/demo +# +#if WITH_TK +#demo_SCRIPTS = spline +#demo_DATA = spline.README +#endif +# +#EXTRA_DIST = spline spline.README -- 2.40.0