Organizational changes.
This commit is contained in:
parent
a944f1bb1e
commit
9d660dfdf0
3 changed files with 20 additions and 4 deletions
|
@ -28,8 +28,9 @@ include make.inc
|
||||||
|
|
||||||
|
|
||||||
SUBSUBDIRS = Flight/LaRCsim Flight/Slew
|
SUBSUBDIRS = Flight/LaRCsim Flight/Slew
|
||||||
SUBDIRS = Aircraft Cockpit Controls Flight Joystick Math Scenery Time Weather
|
SUBDIRS = Aircraft Cockpit Controls Flight Joystick Math Scenery \
|
||||||
MAIN = GLUT
|
Time Weather
|
||||||
|
MAIN = Main
|
||||||
|
|
||||||
|
|
||||||
all:
|
all:
|
||||||
|
@ -92,6 +93,9 @@ bin-zip:
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.28 1997/10/28 19:35:40 curt
|
||||||
|
# Organizational changes.
|
||||||
|
#
|
||||||
# Revision 1.27 1997/09/23 00:29:27 curt
|
# Revision 1.27 1997/09/23 00:29:27 curt
|
||||||
# Tweaks to get things to compile with gcc-win32.
|
# Tweaks to get things to compile with gcc-win32.
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
majordomo writes:
|
majordomo writes:
|
||||||
Subdirectories
|
Subdirectories
|
||||||
==============
|
==============
|
||||||
GLUT/
|
Main/
|
||||||
-------
|
-------
|
||||||
"main()" and GLUT dependent mouse/keyboard/graphics code.
|
"main()" and GLUT dependent mouse/keyboard/graphics code.
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,14 @@
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
VERSION = 0.13
|
#---------------------------------------------------------------------------
|
||||||
|
# Define the version
|
||||||
|
#---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
VERSION_MAJOR = 0
|
||||||
|
VERSION_MINOR = 14
|
||||||
|
VERSION = $(VERSION_MAJOR).$(VERSION_MINOR)
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# Choose your weapons
|
# Choose your weapons
|
||||||
|
@ -36,6 +43,7 @@ FLEX = flex -f -L
|
||||||
BISON = bison -v --no-lines
|
BISON = bison -v --no-lines
|
||||||
AR = ar
|
AR = ar
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
|
LN = ln -sf
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
|
@ -115,11 +123,15 @@ FG_CFLAGS = $(GLOBAL_CFLAGS)
|
||||||
# INTERFACE_FILES = GLUTmain.c GLUTkey.c
|
# INTERFACE_FILES = GLUTmain.c GLUTkey.c
|
||||||
# GRAPHICS_LIBS = -lglu32 -lopengl32 -luser32 -lgdi32
|
# GRAPHICS_LIBS = -lglu32 -lopengl32 -luser32 -lgdi32
|
||||||
# FG_CFLAGS = $(GLOBAL_CFLAGS) -DWIN32 -DUSE_RAND
|
# FG_CFLAGS = $(GLOBAL_CFLAGS) -DWIN32 -DUSE_RAND
|
||||||
|
# LN = copy
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# $Log$
|
# $Log$
|
||||||
|
# Revision 1.18 1997/10/28 19:35:41 curt
|
||||||
|
# Organizational changes.
|
||||||
|
#
|
||||||
# Revision 1.17 1997/10/25 03:30:02 curt
|
# Revision 1.17 1997/10/25 03:30:02 curt
|
||||||
# Misc. tweaks.
|
# Misc. tweaks.
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue