1
0
Fork 0

Added a "Tests/" subdirectory.

This commit is contained in:
curt 1998-04-25 14:59:29 +00:00
parent 555f353a3a
commit 5d66cbd36b
5 changed files with 13 additions and 4 deletions

View file

@ -1,4 +1,4 @@
SUBDIRS = Include Lib Simulator Tools
SUBDIRS = Include Lib Simulator Tools Tests
EXTRA_DIST = Makefile.extra README.Win32 README.autoconf README.running Thanks

View file

@ -71,7 +71,7 @@ PACKAGE = @PACKAGE@
RANLIB = @RANLIB@
VERSION = @VERSION@
SUBDIRS = Include Lib Simulator Tools
SUBDIRS = Include Lib Simulator Tools Tests
EXTRA_DIST = Makefile.extra README.Win32 README.autoconf README.running Thanks
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4

6
NEWS
View file

@ -1,4 +1,10 @@
New in 0.44:
* command line option to set starting position by airport ID
New in 0.43:
* material properties bug fixed when rendering terrain.
* bug in sky color generation fixed.
* bug in fog color generation fixed.
* zlib on the fly decompression/compression support.
* more code reorganization and clean ups.
* a fixed up 30 arcsec DEM file preprocessor. World wide DEM's are

4
configure vendored
View file

@ -703,7 +703,7 @@ fi
PACKAGE=FlightGear
VERSION=0.43
VERSION=0.44
if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
{ echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
@ -4053,6 +4053,7 @@ trap 'rm -fr `echo "\
Tools/Stripe_u/Makefile \
Tools/Tri2obj/Makefile \
Tools/Triangle/Makefile \
Tests/Makefile \
Include/config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
EOF
cat >> $CONFIG_STATUS <<EOF
@ -4190,6 +4191,7 @@ CONFIG_FILES=\${CONFIG_FILES-"\
Tools/Stripe_u/Makefile \
Tools/Tri2obj/Makefile \
Tools/Triangle/Makefile \
Tests/Makefile \
"}
EOF
cat >> $CONFIG_STATUS <<\EOF

View file

@ -5,7 +5,7 @@ dnl
AC_INIT(Simulator/Aircraft/aircraft.c)
dnl Initialize the automake stuff
AM_INIT_AUTOMAKE(FlightGear, 0.43)
AM_INIT_AUTOMAKE(FlightGear, 0.44)
dnl Checks for programs.
@ -164,4 +164,5 @@ AC_OUTPUT( \
Tools/Stripe_u/Makefile \
Tools/Tri2obj/Makefile \
Tools/Triangle/Makefile \
Tests/Makefile \
)