1
0
Fork 0
This commit is contained in:
curt 1997-07-19 22:41:34 +00:00
parent b4377855be
commit 4438ee1679
3 changed files with 28 additions and 14 deletions

View file

@ -1,4 +1,4 @@
aircraft.o: aircraft.c aircraft.h ../Flight/flight.h \ aircraft.o: aircraft.c aircraft.h ../Flight/flight.h \
../Flight/Slew/slew.h ../Flight/LaRCsim/ls_interface.h \ ../Flight/Slew/slew.h ../Flight/LaRCsim/ls_interface.h \
../Flight/LaRCsim/../flight.h ../Controls/controls.h \ ../Flight/LaRCsim/../flight.h ../Controls/controls.h \
../Controls/../limits.h ../Controls/../limits.h ../constants.h

View file

@ -1,8 +1,9 @@
majordomo writes:
Subdirectories Subdirectories
============== ==============
OpenGL/ OpenGL/
------- -------
"main" and OpenGL dependent mouse/keyboard/graphics code. "main()" and OpenGL dependent mouse/keyboard/graphics code.
Aircraft/ Aircraft/
@ -42,6 +43,16 @@ Timer/
Code to handle time and timing of events. Code to handle time and timing of events.
Utils/
------
Miscellaneous utility routines such as a general random number generator
Weather/ Weather/
-------- --------
Weather management and modeling code. Weather management and modeling code.
Win32/
------
Win32 support stuff

View file

@ -98,28 +98,31 @@ GLOBAL_CFLAGS = -g -Wall
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# Linux/Mesa with the GLUT toolkit # Linux/Mesa with the GLUT toolkit
# #
# INTERFACE_FLAGS = -DGLUT INTERFACE_FLAGS = -DGLUT
# INTERFACE_LIBS = -lglut INTERFACE_LIBS = -lglut
# INTERFACE_FILES = GLUTkey.c INTERFACE_FILES = GLUTkey.c
# MESA_LIBS = -L/usr/lib/mesa -lMesatk -lMesaaux -lMesaGLU -lMesaGL MESA_LIBS = -L/usr/lib/mesa -lMesatk -lMesaaux -lMesaGLU -lMesaGL
# X11_LIBS = -L/usr/X11R6/lib -lXext -lXmu -lXi -lX11 X11_LIBS = -L/usr/X11R6/lib -lXext -lXmu -lXi -lX11
# GRAPHICS_LIBS = $(MESA_LIBS) $(X11_LIBS) GRAPHICS_LIBS = $(MESA_LIBS) $(X11_LIBS)
# FG_CFLAGS = $(GLOBAL_CFLAGS) FG_CFLAGS = $(GLOBAL_CFLAGS)
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# Cygnus Win32 (gcc based) with a static version of the GLUT toolkit # Cygnus Win32 (gcc based) with a static version of the GLUT toolkit
# #
INTERFACE_FLAGS = -DGLUT # INTERFACE_FLAGS = -DGLUT
INTERFACE_LIBS = ../Win32/libglut.a # INTERFACE_LIBS = ../Win32/libglut.a
INTERFACE_FILES = GLUTkey.c # INTERFACE_FILES = 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
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# $Log$ # $Log$
# Revision 1.9 1997/07/19 22:41:35 curt
# tweaks
#
# Revision 1.8 1997/07/18 23:41:20 curt # Revision 1.8 1997/07/18 23:41:20 curt
# Tweaks for building with Cygnus Win32 compiler. # Tweaks for building with Cygnus Win32 compiler.
# #