source: LinearAlgebra/bootstrap@ ff4fff9

CombiningParticlePotentialParsing
Last change on this file since ff4fff9 was bf4b9f, checked in by Frederik Heber <heber@…>, 14 years ago

Moved LinearAlgebra from folder src/ into distinct sub-package.

  • src/LinearAlgebra folder is now LinearAlgebra/src/LinearAlgebra due to include consistency.
  • src/LinearAlgebra/unittests have been moved to LinearAlgebra/unittests.
  • All Makefile.am's had to be changed due to changed location of library.
  • renamed libMolecuilderLinearAlgebra to libLinearAlgebra.
  • CONFIG_AUX_DIR is build-aux 9for molecuilder and LinearAlgebra).
  • m4 is symlinked from below.
  • build-aux now contains small README such that it is created automatically.
  • Property mode set to 100755
File size: 419 bytes
Line 
1#! /bin/sh
2# bootstrap git sources
3# This file is not distributed.
4
5set -x
6
7# create ChangeLog from log of git repo
8if test ! -e ChangeLog; then
9 git log > ChangeLog
10else
11 if git log > ChangeLog.t \
12 && diff ChangeLog.t ChangeLog >/dev/null 2>&1; then
13 mv -f ChangeLog.t ChangeLog
14 else
15 rm -f ChangeLog.t
16 fi
17fi
18
19
20autoreconf -v -i -I build-aux -I m4
Note: See TracBrowser for help on using the repository browser.