1
0
Fork 0

Renamed GLmain.c GLUTmain.c

This commit is contained in:
curt 1997-08-02 18:45:00 +00:00
parent ebf7a0b4c0
commit 2a35aed68b
2 changed files with 13 additions and 6 deletions

View file

@ -489,8 +489,9 @@ int main( int argc, char *argv[] ) {
/* Define initial window size */ /* Define initial window size */
glutInitWindowSize(640, 480); glutInitWindowSize(640, 480);
/* Initialize the main window */ /* Initialize windows */
glutCreateWindow("Flight Gear"); glutCreateWindow("Flight Gear");
#elif MESA_TK #elif MESA_TK
/* Define initial window size */ /* Define initial window size */
tkInitPosition(0, 0, 640, 480); tkInitPosition(0, 0, 640, 480);
@ -655,9 +656,12 @@ int printf (const char *format, ...) {
/* $Log$ /* $Log$
/* Revision 1.43 1997/08/02 16:23:47 curt /* Revision 1.1 1997/08/02 18:45:00 curt
/* Misc. tweaks. /* Renamed GLmain.c GLUTmain.c
/* /*
* Revision 1.43 1997/08/02 16:23:47 curt
* Misc. tweaks.
*
* Revision 1.42 1997/08/01 19:43:33 curt * Revision 1.42 1997/08/01 19:43:33 curt
* Making progress with coordinate system overhaul. * Making progress with coordinate system overhaul.
* *

View file

@ -26,7 +26,7 @@
TARGET=fg0 TARGET=fg0
CFILES = GLmain.c $(INTERFACE_FILES) mesh2GL.c CFILES = GLUTmain.c $(INTERFACE_FILES) mesh2GL.c
OFILES = $(CFILES:.c=.o) OFILES = $(CFILES:.c=.o)
AFILES = ../Aircraft/libAircraft.a ../Controls/libControls.a \ AFILES = ../Aircraft/libAircraft.a ../Controls/libControls.a \
../Flight/libFlight.a ../Flight/LaRCsim/libLaRCsim.a \ ../Flight/libFlight.a ../Flight/LaRCsim/libLaRCsim.a \
@ -61,8 +61,8 @@ clean:
include depend include depend
GLmain.o: GLUTmain.o:
$(CC) $(CFLAGS) -c GLmain.c -o $@ $(CC) $(CFLAGS) -c GLUTmain.c -o $@
GLUTkey.o: GLUTkey.o:
$(CC) $(CFLAGS) -c GLUTkey.c -o $@ $(CC) $(CFLAGS) -c GLUTkey.c -o $@
@ -76,6 +76,9 @@ mesh2GL.o:
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# $Log$ # $Log$
# Revision 1.28 1997/08/02 18:45:01 curt
# Renamed GLmain.c GLUTmain.c
#
# Revision 1.27 1997/07/31 22:52:39 curt # Revision 1.27 1997/07/31 22:52:39 curt
# Working on redoing internal coordinate systems & scenery transformations. # Working on redoing internal coordinate systems & scenery transformations.
# #