Initial revision.
This commit is contained in:
commit
f7233410da
2 changed files with 65 additions and 0 deletions
41
Simulator/Makefile
Normal file
41
Simulator/Makefile
Normal file
|
@ -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.
|
||||
#
|
24
Simulator/README
Normal file
24
Simulator/README
Normal file
|
@ -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.
|
Loading…
Add table
Reference in a new issue