Skip to content
Snippets Groups Projects
Commit 92df9fd4 authored by Daniel Koester's avatar Daniel Koester
Browse files

*** empty log message ***

parent b96dbd99
Branches
Tags
No related merge requests found
......@@ -67,3 +67,7 @@ b) All "Makefile.am"s and "Makefile.in"s are included. Ideally, the user simply
enters "configure" followed by "gmake", "gmake install" to install everything.
c) "configure" AND "configure.in" are included, so that possible installation problems can (hopefully) be corrected without too much trouble.
V) Platform-dependent problems so far
1)
\ No newline at end of file
......@@ -2,6 +2,23 @@ SUBDIRS = BLAS IAMTOOLS SOLVER PLOT_ANSI ALBERT
EXTRA_DIST = DEMO
cvs_list=DEMO/CVS DEMO/src/CVS DEMO/src/*/CVS DEMO/src/*/INIT/CVS DEMO/src/*/Macro/CVS ALBERT/src/Common/CVS
cvs-clean:
@echo Fixing package for cvs commit...
find . -name \*~ -exec rm -rf {} \;
find ./ALBERT ./BLAS ./IAMTOOLS ./PLOT_ANSI ./SOLVER -name Makefile.in -exec rm -rf {} \;
find ./DEMO ./ALBERT ./BLAS ./IAMTOOLS ./PLOT_ANSI ./SOLVER -name Makefile -exec rm -rf {} \;
cp -f configure.in admin/
cp -f Makefile.am admin/
cp -f AUTHORS admin/
cp -f COPYING admin/
cp -f ChangeLog admin/
cp -f MAINTENANCE admin/
cp -f NEWS admin/
cp -f README admin/
chgrp -R albert *
dist-hook:
@echo "Deleting CVS directories in built package..."
(cd $(dist_dir) && find . -name CVS -exec 'cd {}/.. && rm -rf CVS' \; )
\ No newline at end of file
@echo Deleting CVS directories in built package...
(cd $(distdir) && rm -rf $(cvs_list) )
\ No newline at end of file
......@@ -9,7 +9,11 @@ AC_PROG_LN_S
AC_PROG_CC
AC_PROG_F77
dnl support for Libtool
dnl ******************************************************************************
dnl comment the next line out to create dynamic libraries
dnl ******************************************************************************
AC_DISABLE_SHARED
AC_PROG_LIBTOOL
dnl change the installation directory. This could surely be done more elegantly...
......@@ -35,12 +39,6 @@ AC_TYPE_SIZE_T
dnl Checks for library functions.
AC_CHECK_FUNCS(strdup strstr,,AC_MSG_ERROR(Exiting...))
dnl ******************************************************************************
dnl uncomment this to create dynamic libraries
dnl ******************************************************************************
static_libraries=-static
dnl ******************************************************************************
dnl Prevent -g from being set here automatically...
dnl ******************************************************************************
......@@ -129,4 +127,4 @@ AC_SUBST(albert_variable_object)
AC_SUBST(make_own_blas_lib)
AC_OUTPUT(Makefile BLAS/Makefile IAMTOOLS/Makefile SOLVER/Makefile SOLVER/src/Makefile PLOT_ANSI/Makefile PLOT_ANSI/src/Makefile ALBERT/Makefile ALBERT/src/Makefile ALBERT/src/1d/Makefile ALBERT/src/2d/Makefile ALBERT/src/3d/Makefile ALBERT/src/Common/Makefile ALBERT/src/Common/Makefile.albert DEMO/src/1d/Makefile DEMO/src/2d/Makefile DEMO/src/3d/Makefile)
AC_OUTPUT(Makefile BLAS/Makefile IAMTOOLS/Makefile SOLVER/Makefile SOLVER/src/Makefile PLOT_ANSI/Makefile PLOT_ANSI/src/Makefile ALBERT/Makefile ALBERT/src/Makefile ALBERT/src/1d/Makefile ALBERT/src/2d/Makefile ALBERT/src/3d/Makefile ALBERT/src/Common/Makefile ALBERT/src/Common/Makefile.albert DEMO/src/Makefile DEMO/src/1d/Makefile DEMO/src/2d/Makefile DEMO/src/3d/Makefile)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment