Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alberta3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ians-nmh-siebert
alberta
alberta3
Commits
a1d57087
Commit
a1d57087
authored
20 years ago
by
Claus-Justus Heine
Browse files
Options
Downloads
Patches
Plain Diff
Just a final commit of some of my changes. ALBERTA-2 lives now in Augsburg.
parent
b40ed3a1
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile.am
+11
-3
11 additions, 3 deletions
Makefile.am
Makefile.am.template
+19
-1
19 additions, 1 deletion
Makefile.am.template
configure.ac
+6
-4
6 additions, 4 deletions
configure.ac
with
36 additions
and
8 deletions
Makefile.am
+
11
−
3
View file @
a1d57087
...
...
@@ -39,6 +39,7 @@ clean-local:
distclean-local
:
-
rm
-rf
$(
DEMO
)
-
rm
-f
stamp-automakefiles
if
MAINTAINER_MODE
# This target only makes sense for maintainers!!
...
...
@@ -72,6 +73,8 @@ dist-hook:
find
$(
distdir
)
/DEMO
\(
-name
ellipt
-o
-name
heat
-o
-name
nonlin
\)
-exec
/bin/rm
-f
{}
\;
find
$(
distdir
)
/DEMO
-name
Makefile
-exec
/bin/rm
-f
{}
\;
#
# NOTE: you better have GRAPE installed properly before doing this.
#
...
...
@@ -80,9 +83,14 @@ dist-hook:
# otherwise the grape-interface will not be included into the
# distribution.
#
generate-alberta-dist
:
./generate-alberta-automakefiles.sh
autoreconf
automakefiles
:
stamp-automakefiles
stamp-automakefiles
:
Makefile.am.template generate-alberta-automakefiles.sh
cd
$(
top_srcdir
)
&&
./generate-alberta-automakefiles.sh
cd
$(
top_srcdir
)
&&
autoreconf
date
>
stamp-automakefiles
generate-alberta-dist
:
automakefiles
./configure
--enable-maintainer-mode
--prefix
=
@prefix@
make dist
endif
...
...
This diff is collapsed.
Click to expand it.
Makefile.am.template
+
19
−
1
View file @
a1d57087
## Makefile.am for libALBERTA%LIBCODE%
# Makefile.am for libALBERTA%LIBCODE%
###############################################################################
#
# DO NOT EDIT!
#
# Generated automatically from Makefile.am.template in the top-level
# ALBERTA distribution directory.
#
###############################################################################
DIM_OF_WORLD
=
%DIM_OF_WORLD%
EL_INDEX
=
%EL_INDEX%
...
...
@@ -15,3 +24,12 @@ nodist_libALBERTA%LIBCODE%_la_SOURCES = $(sources)
if
HAVE_GLTOOLS
nodist_libALBERTA%LIBCODE%
_la_SOURCES
+=
../Common/gltools.c
endif
# NOTE: versioning should _not_ reflect the package release number.
#
# This is CURRENT:REVISION:AGE, meaning that this library supports ABI
# (CURRENT - AGE) to CURRENT, and REVISION is just incremented any
# time something is changed (e.g. bug-fixes). When CURRENT is
# incremented, REVISION is reset to 0. See libtool info manual.
#
libALBERTA%LIBCODE%_la_LDFLAGS = -version-info 0
:
0:0
This diff is collapsed.
Click to expand it.
configure.ac
+
6
−
4
View file @
a1d57087
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.52)
AC_INIT([alberta], [2.0], [claus@mathematik.uni-freiburg.de,koester@math.uni-augsburg.de])
AC_INIT([alberta
2
], [2.0], [claus@mathematik.uni-freiburg.de,koester@math.uni-augsburg.de])
AC_CONFIG_SRCDIR([ALBERTA/src/Common/alberta.h])
AM_MAINTAINER_MODE
...
...
@@ -104,7 +104,7 @@ dnl set default debugging flags, but allow for user-override
dnl
if test -z "${ALBERTA_DEBUG_CFLAGS}"; then
if test "$GCC" = yes; then
ALBERTA_DEBUG_CFLAGS="-O0 -g
gdb
-fno-inline -fno-builtin"
ALBERTA_DEBUG_CFLAGS="-O0 -g
3 -gdwarf-2
-fno-inline -fno-builtin"
else
ALBERTA_DEBUG_CFLAGS="-g"
fi
...
...
@@ -113,11 +113,13 @@ AC_ARG_VAR([ALBERTA_DEBUG_CFLAGS],[Compiler-flags used to create the debug-enabl
dnl
dnl ****************************************************************************
dnl
dnl set default optimizing flags, but allow for user-override
dnl Set default optimizing flags, but allow for user-override.
dnl With gcc, provide basic debugging facilities even with optimized
dnl code.
dnl
if test -z "${ALBERTA_OPTIMIZE_CFLAGS}"; then
if test "$GCC" = yes; then
ALBERTA_OPTIMIZE_CFLAGS="-O3"
ALBERTA_OPTIMIZE_CFLAGS="-O3
-g
"
else
ALBERTA_OPTIMIZE_CFLAGS="-O"
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment