--- /dev/null
+#---------------------------------------------------------------------------
+# Toplevel Project Makefile
+#
+# Written by Curtis Olson, started May 1997.
+#
+# $Id$
+# (Log is kept at end of this file)
+#---------------------------------------------------------------------------
+
+
+CC = gcc
+
+
+SUBDIRS = aircraft controls flight scenery
+MAIN = gltk
+
+
+all:
+ for dir in $(SUBDIRS) $(MAIN); do \
+ ( cd $$dir; make CC=$(CC) CFLAGS=$(CFLAGS) ) ; \
+ done
+
+
+install:
+ for dir in $(SUBDIRS) $(MAIN); do \
+ ( cd $$dir; make CC=$(CC) CFLAGS=$(CFLAGS) install) ; \
+ done
+
+
+clean:
+ -rm -f *~
+ for dir in $(SUBDIRS) $(MAIN); do \
+ (cd $$dir; make clean) ; \
+ done
+
+
+#---------------------------------------------------------------------------
+# $Log$
+# Revision 1.1 1997/05/16 15:51:13 curt
+# Initial revision.
+#
--- /dev/null
+Subdirectories
+==============
+
+
+aircraft
+--------
+Structure and code to tie together all the pieces of an aircraft such
+as flight model, engine model, panel, controls, etc.
+
+
+controls
+--------
+Provide a standardized interface to all aircraft controls.
+
+
+flight
+------
+Strucures and code to implement various flight models. Provides a
+standardized interface to all interesting flight model variabls.
+
+
+gltk
+----
+"main" and platform dependent mouse/keyboard/graphics code.