From 04729aed5b59ee34ff89b011d3b99c87de6473a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Thu, 8 Dec 2011 12:21:57 +0100 Subject: [PATCH] Remove Autotools build system. Will be ressurected at a later time. --- Makefile.am | 37 ------------------------------------- configure.ac | 41 ----------------------------------------- 2 files changed, 78 deletions(-) delete mode 100644 Makefile.am delete mode 100644 configure.ac diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index 0a0d80db..00000000 --- a/Makefile.am +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: duneproject 5489 2009-03-25 11:19:24Z sander $ - -#SUBDIRS = test - -ACLOCAL_AMFLAGS = -I m4 - -cpgpreprocessdir = $(includedir)/cpgpreprocess - -cpgpreprocess_HEADERS = \ -cgridinterface.h \ -preprocess.h \ -readvector.hpp - -noinst_PROGRAMS = grid_io_demo scaneclipsedeck - -lib_LTLIBRARIES = libcpgpreprocess.la -noinst_LTLIBRARIES = libcpgpreprocess_noinst.la - -libcpgpreprocess_la_SOURCES = \ -cgridinterface.c \ -facetopology.c \ -facetopology.h \ -geometry.c \ -geometry.h \ -grid.h \ -preprocess.c \ -readvector.cpp \ -sparsetable.c \ -sparsetable.h \ -uniquepoints.c \ -uniquepoints.h - -libcpgpreprocess_noinst_la_SOURCES = \ -$(libcpgpreprocess_la_SOURCES) - -grid_io_demo_SOURCES = test_readvector.cpp -grid_io_demo_LDADD = libcpgpreprocess.la diff --git a/configure.ac b/configure.ac deleted file mode 100644 index 5ebdac0f..00000000 --- a/configure.ac +++ /dev/null @@ -1,41 +0,0 @@ -# -*- Autoconf -*- -# Process this file with autoconf to produce a configure script. - -AC_PREREQ([2.59]) -AC_INIT([cpgpreprocess], [1.0], [Jostein.R.Natvig@sintef.no]) -AC_CONFIG_SRCDIR([preprocess.c]) -AC_CONFIG_MACRO_DIR([m4]) -AC_CONFIG_HEADERS([config.h]) - -AM_INIT_AUTOMAKE([foreign]) - -# Use "silent" rules by default if available in the Automake being used to -# process this setup. See, e.g., -# -# http://www.flameeyes.eu/autotools-mythbuster/automake/silent.html -# -# for details, particularly concerning the backwards compatibility. -# -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) - - -LT_INIT - -# Checks for programs. -AC_PROG_CXX -AC_PROG_CC -AC_PROG_LIBTOOL - -# Checks for libraries. - -# Checks for header files. -AC_CHECK_HEADERS([float.h limits.h stdlib.h string.h]) - -# Checks for typedefs, structures, and compiler characteristics. - -# Checks for library functions. -AC_FUNC_MALLOC -AC_FUNC_REALLOC - -AC_CONFIG_FILES([Makefile]) -AC_OUTPUT