1
0
Fork 0

Organizational changes.

This commit is contained in:
curt 1997-10-28 19:35:40 +00:00
parent a944f1bb1e
commit 9d660dfdf0
3 changed files with 20 additions and 4 deletions

View file

@ -28,8 +28,9 @@ include make.inc
SUBSUBDIRS = Flight/LaRCsim Flight/Slew
SUBDIRS = Aircraft Cockpit Controls Flight Joystick Math Scenery Time Weather
MAIN = GLUT
SUBDIRS = Aircraft Cockpit Controls Flight Joystick Math Scenery \
Time Weather
MAIN = Main
all:
@ -92,6 +93,9 @@ bin-zip:
#---------------------------------------------------------------------------
# $Log$
# Revision 1.28 1997/10/28 19:35:40 curt
# Organizational changes.
#
# Revision 1.27 1997/09/23 00:29:27 curt
# Tweaks to get things to compile with gcc-win32.
#

View file

@ -1,7 +1,7 @@
majordomo writes:
Subdirectories
==============
GLUT/
Main/
-------
"main()" and GLUT dependent mouse/keyboard/graphics code.

View file

@ -25,7 +25,14 @@
#---------------------------------------------------------------------------
VERSION = 0.13
#---------------------------------------------------------------------------
# Define the version
#---------------------------------------------------------------------------
VERSION_MAJOR = 0
VERSION_MINOR = 14
VERSION = $(VERSION_MAJOR).$(VERSION_MINOR)
#---------------------------------------------------------------------------
# Choose your weapons
@ -36,6 +43,7 @@ FLEX = flex -f -L
BISON = bison -v --no-lines
AR = ar
RANLIB = ranlib
LN = ln -sf
#---------------------------------------------------------------------------
@ -115,11 +123,15 @@ FG_CFLAGS = $(GLOBAL_CFLAGS)
# INTERFACE_FILES = GLUTmain.c GLUTkey.c
# GRAPHICS_LIBS = -lglu32 -lopengl32 -luser32 -lgdi32
# FG_CFLAGS = $(GLOBAL_CFLAGS) -DWIN32 -DUSE_RAND
# LN = copy
#---------------------------------------------------------------------------
#---------------------------------------------------------------------------
# $Log$
# Revision 1.18 1997/10/28 19:35:41 curt
# Organizational changes.
#
# Revision 1.17 1997/10/25 03:30:02 curt
# Misc. tweaks.
#