Lib/*/*/.deps Simulator/*/*/.deps Tools/*/*/.deps
clean-libs:
- rm -rf .libs Src/.libs Src/*/.libs Src/*/*/.libs
- rm -f Src/*/so_locations Src/*/*/so_locations
+ rm -rf .libs Lib/.libs Simulator/.libs Tools/.libs \
+ Lib/*/.libs Simulator/*/.libs Tools/*/.libs \
+ Lib/*/*/.libs Simulator/*/*/.libs Tools/*/*/.libs
+ rm -f Simulator/*/so_locations Lib/*/so_locations \
+ Simulator/*/*/so_locations Lib/*/*/so_locations
# clean up after winbloze spews random case for file names :-(
clean-winbloze: clean-deps clean-libs
- rm -f makefile Src/makefile Src/*/makefile Src/*/*/makefile
- rm -f Src/Main/fg.exe
+ rm -f makefile Include/makefile Lib/makefile Simulator/makefile \
+ Tools/makefile \
+ Lib/*/makefile Simulator/*/makefile Tools/*/makefile \
+ Lib/*/*/makefile Simulator/*/*/makefile Tools/*/*/makefile
+ rm -f Src/Main/fg.exe Tools/*/*.exe
--- /dev/null
+New in 0.42:
+* Simple autopilot heading hold contributed by
+ Jeff Goeke-Smith <jgoeke@voyager.net>
+* More code reorganization and clean ups.
+
+New in 0.41:
+* Many autoconf cleanups and tweaks
+* make and make install work in unix
+* make works for cygnus win32 (but not install yet)
+* make dist now works
+* added the Tools directory into the main source tree
+
+New in 0.40:
+* Gnu automake/autoconf/libtool make system
+* Initial texture support
+* Bug fixes
cd FlightGear-X.XX
pkunzip -d win32-libs-X.XX.zip
+6. --> IMPORTANT <--
+
+ You will find a file called "install.exe" In the Win32 directory
+ created when you unzip the win32-libs-X.XX.zip file.
+
+ This version of install.exe should replace the one in your
+ H-i386-cygwin32\bin directory - it's sole claim to fame is that it
+ "understands" that when many calls to it say "install foo" they
+ mean "install foo.exe". If you skip this step, and attempt an
+ install with the older version present, "make install" will fail.
+
Side Note: we need to make a distinction between the "build tree" and
the "install tree." The "build tree" is what we've been talking
about up until this point. This is where the source code lives
executables, the scenery, the textures, and any other run-time
files will be located.
-6. Configure the make system for your environment and your "install
+7. Configure the make system for your environment and your "install
tree". Tell the configure script where you would like to install
the exectuables and all the scenery and textures by using the
"--prefix" option. In the following example the base of the
./configure --prefix=/FlightGear
-7. Build the executable. Run:
+8. Build the executable. Run:
make
-8. Create and populate the install tree. Run:
+9. Create and populate the install tree. Run:
make install
make sure you have the appropriate scenery and texture downloaded
and unzip'ed in your "install tree".
-9. Download and install the scenery and texture files.
+10. Download and install the scenery and texture files.
-10. Set the runtime environment variable to point to the base of your
+11. Set the runtime environment variable to point to the base of your
"install tree". Run:
export FG_ROOT=/FlightGear
-11. Try it out! There are several ways to run flight gear once it has
+12. Try it out! There are several ways to run flight gear once it has
been installed. The simplest is as follows. Run:
/FlightGear/bin/runfg.bat
-12. I appreciate feedback. Tell me if it works! If it doesn't, tell me
+13. I appreciate feedback. Tell me if it works! If it doesn't, tell me
what went wrong. My email is curt@me.umn.edu
2 = back
3 = right/back
6 = right
- 9 = right/forward
\ No newline at end of file
+ 9 = right/forward
+
+Autopilot
+---------
+ Shift + A Enable Autopilot
+ Shift + S Disable Autopilot
http://edcwww.cr.usgs.gov/landdaac/gtopo30/gtopo30.html
+Jean-loup Gailly and Mark Adler <zlib@quest.jpl.nasa.gov>
+ Authors of the zlib library. Used for on-the-fly compression and
+ decompression routines.
+ http://www.cdrom.com/pub/infozip/zlib/
+
+
Jeff Goeke-Smith <jgoeke@voyager.net>
Contributed our first autopilot.
PACKAGE=FlightGear
-VERSION=0.42
+VERSION=0.43
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; }
Include/Makefile \
Lib/Makefile \
Lib/Bucket/Makefile \
+ Lib/Debug/Makefile \
Lib/DEM/Makefile \
+ Lib/Math/Makefile \
Lib/XGL/Makefile \
+ Lib/zlib/Makefile \
Simulator/Makefile \
Simulator/Aircraft/Makefile \
Simulator/Astro/Makefile \
Simulator/Main/runfg \
Simulator/Main/runfg.bat \
Simulator/Makefile \
- Simulator/Math/Makefile \
Simulator/Scenery/Makefile \
Simulator/Time/Makefile \
Simulator/Weather/Makefile \
Tools/Makefile \
Tools/AssemTris/Makefile \
Tools/Dem2node/Makefile \
+ Tools/DemRaw2ascii/Makefile \
Tools/FixNode/Makefile \
Tools/FixObj/Makefile \
Tools/SplitTris/Makefile \
Include/Makefile \
Lib/Makefile \
Lib/Bucket/Makefile \
+ Lib/Debug/Makefile \
Lib/DEM/Makefile \
+ Lib/Math/Makefile \
Lib/XGL/Makefile \
+ Lib/zlib/Makefile \
Simulator/Makefile \
Simulator/Aircraft/Makefile \
Simulator/Astro/Makefile \
Simulator/Main/runfg \
Simulator/Main/runfg.bat \
Simulator/Makefile \
- Simulator/Math/Makefile \
Simulator/Scenery/Makefile \
Simulator/Time/Makefile \
Simulator/Weather/Makefile \
Tools/Makefile \
Tools/AssemTris/Makefile \
Tools/Dem2node/Makefile \
+ Tools/DemRaw2ascii/Makefile \
Tools/FixNode/Makefile \
Tools/FixObj/Makefile \
Tools/SplitTris/Makefile \
AC_INIT(Simulator/Aircraft/aircraft.c)
dnl Initialize the automake stuff
-AM_INIT_AUTOMAKE(FlightGear, 0.42)
+AM_INIT_AUTOMAKE(FlightGear, 0.43)
dnl Checks for programs.
Include/Makefile \
Lib/Makefile \
Lib/Bucket/Makefile \
+ Lib/Debug/Makefile \
Lib/DEM/Makefile \
+ Lib/Math/Makefile \
Lib/XGL/Makefile \
+ Lib/zlib/Makefile \
Simulator/Makefile \
Simulator/Aircraft/Makefile \
Simulator/Astro/Makefile \
Simulator/Main/runfg \
Simulator/Main/runfg.bat \
Simulator/Makefile \
- Simulator/Math/Makefile \
Simulator/Scenery/Makefile \
Simulator/Time/Makefile \
Simulator/Weather/Makefile \
Tools/Makefile \
Tools/AssemTris/Makefile \
Tools/Dem2node/Makefile \
+ Tools/DemRaw2ascii/Makefile \
Tools/FixNode/Makefile \
Tools/FixObj/Makefile \
Tools/SplitTris/Makefile \