]> git.mxchange.org Git - flightgear.git/commitdiff
Initial revision.
authorcurt <curt>
Fri, 16 May 1997 15:51:13 +0000 (15:51 +0000)
committercurt <curt>
Fri, 16 May 1997 15:51:13 +0000 (15:51 +0000)
Simulator/Makefile [new file with mode: 0644]
Simulator/README [new file with mode: 0644]

diff --git a/Simulator/Makefile b/Simulator/Makefile
new file mode 100644 (file)
index 0000000..54336e8
--- /dev/null
@@ -0,0 +1,41 @@
+#---------------------------------------------------------------------------
+# 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.
+#
diff --git a/Simulator/README b/Simulator/README
new file mode 100644 (file)
index 0000000..25eeda8
--- /dev/null
@@ -0,0 +1,24 @@
+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.