Moved astro stuff to .../Src/Astro/
This commit is contained in:
parent
de4e67df0d
commit
54837eb314
3 changed files with 11 additions and 61 deletions
|
@ -26,8 +26,7 @@
|
|||
|
||||
TARGET = libScenery.a
|
||||
|
||||
CFILES = common.c geometry.c mesh.c moon.c obj.c orbits.c planets.c \
|
||||
scenery.c sky.c stars.c sun.c
|
||||
CFILES = common.c geometry.c mesh.c obj.c scenery.c
|
||||
|
||||
OFILES = $(CFILES:.c=.o)
|
||||
|
||||
|
@ -99,6 +98,9 @@ geometry.o:
|
|||
|
||||
#---------------------------------------------------------------------------
|
||||
# $Log$
|
||||
# Revision 1.27 1998/01/07 03:22:28 curt
|
||||
# Moved astro stuff to .../Src/Astro/
|
||||
#
|
||||
# Revision 1.26 1997/12/19 16:45:01 curt
|
||||
# Working on scene rendering order and options.
|
||||
#
|
||||
|
|
|
@ -1,62 +1,9 @@
|
|||
astro.o: astro.c ../XGL/xgl.h astro.h stars.h moon.h orbits.h \
|
||||
../Time/fg_time.h ../Time/../Include/types.h \
|
||||
../Time/../Flight/flight.h ../Time/../Flight/Slew/slew.h \
|
||||
../Time/../Flight/LaRCsim/ls_interface.h \
|
||||
../Time/../Flight/LaRCsim/../flight.h planets.h sun.h \
|
||||
../Include/constants.h ../Include/general.h ../Main/views.h \
|
||||
../Main/../Include/types.h ../Main/../Flight/flight.h \
|
||||
../Main/../Math/mat3.h ../Main/../Time/fg_time.h \
|
||||
../Aircraft/aircraft.h ../Aircraft/../Flight/flight.h \
|
||||
../Aircraft/../Controls/controls.h \
|
||||
../Aircraft/../Controls/../Include/limits.h
|
||||
areamgr.o: areamgr.c ../XGL/xgl.h ../Include/constants.h \
|
||||
../Math/fg_random.h
|
||||
common.o: common.c common.h
|
||||
geometry.o: geometry.c geometry.h mesh.h
|
||||
mesh.o: mesh.c ../Include/constants.h ../Include/types.h \
|
||||
../Math/fg_geodesy.h ../Math/fg_random.h ../Math/mat3.h \
|
||||
../Math/polar.h ../Math/../Include/types.h mesh.h common.h scenery.h
|
||||
moon.o: moon.c ../XGL/xgl.h orbits.h ../Time/fg_time.h \
|
||||
../Time/../Include/types.h ../Time/../Flight/flight.h \
|
||||
../Time/../Flight/Slew/slew.h \
|
||||
../Time/../Flight/LaRCsim/ls_interface.h \
|
||||
../Time/../Flight/LaRCsim/../flight.h moon.h ../Include/general.h \
|
||||
../Main/views.h ../Main/../Include/types.h ../Main/../Flight/flight.h \
|
||||
../Main/../Math/mat3.h ../Main/../Time/fg_time.h
|
||||
obj.o: obj.c ../XGL/xgl.h obj.h scenery.h ../Include/types.h \
|
||||
../Math/mat3.h
|
||||
orbits.o: orbits.c orbits.h ../Time/fg_time.h \
|
||||
../Time/../Include/types.h ../Time/../Flight/flight.h \
|
||||
../Time/../Flight/Slew/slew.h \
|
||||
../Time/../Flight/LaRCsim/ls_interface.h \
|
||||
../Time/../Flight/LaRCsim/../flight.h ../Include/general.h
|
||||
planets.o: planets.c ../Time/fg_time.h ../Time/../Include/types.h \
|
||||
../Time/../Flight/flight.h ../Time/../Flight/Slew/slew.h \
|
||||
../Time/../Flight/LaRCsim/ls_interface.h \
|
||||
../Time/../Flight/LaRCsim/../flight.h orbits.h planets.h sun.h
|
||||
scenery.o: scenery.c ../XGL/xgl.h ../Include/general.h astro.h stars.h \
|
||||
obj.h scenery.h ../Include/types.h
|
||||
sky.o: sky.c ../XGL/xgl.h sky.h ../Time/fg_time.h \
|
||||
../Time/../Include/types.h ../Time/../Flight/flight.h \
|
||||
../Time/../Flight/Slew/slew.h \
|
||||
../Time/../Flight/LaRCsim/ls_interface.h \
|
||||
../Time/../Flight/LaRCsim/../flight.h ../Aircraft/aircraft.h \
|
||||
../Aircraft/../Flight/flight.h ../Aircraft/../Controls/controls.h \
|
||||
../Aircraft/../Controls/../Include/limits.h ../Flight/flight.h \
|
||||
../Include/constants.h ../Main/views.h ../Main/../Include/types.h \
|
||||
../Main/../Flight/flight.h ../Main/../Math/mat3.h \
|
||||
../Main/../Time/fg_time.h ../Math/fg_random.h
|
||||
stars.o: stars.c ../XGL/xgl.h orbits.h ../Time/fg_time.h \
|
||||
../Time/../Include/types.h ../Time/../Flight/flight.h \
|
||||
../Time/../Flight/Slew/slew.h \
|
||||
../Time/../Flight/LaRCsim/ls_interface.h \
|
||||
../Time/../Flight/LaRCsim/../flight.h planets.h stars.h \
|
||||
../Include/constants.h ../Include/general.h ../Aircraft/aircraft.h \
|
||||
../Aircraft/../Flight/flight.h ../Aircraft/../Controls/controls.h \
|
||||
../Aircraft/../Controls/../Include/limits.h ../Main/views.h \
|
||||
../Main/../Include/types.h ../Main/../Flight/flight.h \
|
||||
../Main/../Math/mat3.h ../Main/../Time/fg_time.h
|
||||
sun.o: sun.c ../XGL/xgl.h ../Time/fg_time.h ../Time/../Include/types.h \
|
||||
../Time/../Flight/flight.h ../Time/../Flight/Slew/slew.h \
|
||||
../Time/../Flight/LaRCsim/ls_interface.h \
|
||||
../Time/../Flight/LaRCsim/../flight.h ../Main/views.h \
|
||||
../Main/../Include/types.h ../Main/../Flight/flight.h \
|
||||
../Main/../Math/mat3.h ../Main/../Time/fg_time.h orbits.h sun.h
|
||||
|
|
|
@ -36,10 +36,8 @@
|
|||
|
||||
#include "../Include/general.h"
|
||||
|
||||
#include "astro.h"
|
||||
#include "obj.h"
|
||||
#include "scenery.h"
|
||||
#include "stars.h"
|
||||
|
||||
|
||||
/* Temporary hack until we get the scenery management system running */
|
||||
|
@ -102,9 +100,12 @@ void fgSceneryRender() {
|
|||
|
||||
|
||||
/* $Log$
|
||||
/* Revision 1.29 1997/12/30 20:47:52 curt
|
||||
/* Integrated new event manager with subsystem initializations.
|
||||
/* Revision 1.30 1998/01/07 03:22:29 curt
|
||||
/* Moved astro stuff to .../Src/Astro/
|
||||
/*
|
||||
* Revision 1.29 1997/12/30 20:47:52 curt
|
||||
* Integrated new event manager with subsystem initializations.
|
||||
*
|
||||
* Revision 1.28 1997/12/15 23:55:02 curt
|
||||
* Add xgl wrappers for debugging.
|
||||
* Generate terrain normals on the fly.
|
||||
|
|
Loading…
Add table
Reference in a new issue