From: curt Date: Thu, 22 Jan 1998 22:03:22 +0000 (+0000) Subject: Tweaks. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=49f7c1e101b101a24538377682f86f9c4b950203;p=flightgear.git Tweaks. --- diff --git a/Simulator/Done b/Simulator/Done new file mode 100644 index 000000000..7b846dacd --- /dev/null +++ b/Simulator/Done @@ -0,0 +1,58 @@ +-------------------------------------------------------------------------- +| Done +-------------------------------------------------------------------------- + + +-------------------------------------------------------------------------- + +1/22/98 - Released version 0.25 + +1/19/98 - Compile with c++ + +1/17/98 - Change all "type function();" to "type function( void );" + +-------------------------------------------------------------------------- + +1/16/98 - Release verison 0.23 + +1/6/98 - Added FGwin32.mak (a MSVC++ Makefile for building win32 versions) + +-------------------------------------------------------------------------- + +1/5/98 - Released version 0.21 + +12/31/97 - remove Unix dependencies from .../Time/fg_time.c + +-------------------------------------------------------------------------- + +12/30/97 - Released version 0.20 + +12/30/97 - Released version 0.19 + +12/30/97 - Event manager + +12/23/97 - First stab at a reasonable sky ... I'm going to probably + leave this for now so I don't spend the rest of my life + trying to tweak it. + +12/17/97 - Released version 0.18 + +12/17/97 - Fix sun/moon initialization code so display lists aren't + re-created at every Init(). + +12/12/97 - Released verison 0.17 + +12/10/97 - Released version 0.16 + +12/9/97 - Released demtools version 0.01 + +12/9/97 - Released version 0.15 + +11/25/97 - Released version 0.14 + +10/24/97 - Released version 0.13 + +9/22/97 - Released version 0.12 + +9/16/97 - Released version 0.11 + diff --git a/Simulator/Makefile b/Simulator/Makefile index de0de6522..0a67706f6 100644 --- a/Simulator/Makefile +++ b/Simulator/Makefile @@ -64,12 +64,12 @@ clobber: source-tar: clean (cd ../..; \ $(TAR) cvzf source-$(FG_VERSION).tar.gz FlightGear/fgtop \ - FlightGear/COPYING FlightGear/Docs FlightGear/Src FlightGear/Thanks) + FlightGear/COPYING FlightGear/Docs FlightGear/Src) source-zip: clean (cd ../..; \ zip -r source-$(FG_VERSION).zip FlightGear/fgtop \ - FlightGear/COPYING FlightGear/Docs FlightGear/Src FlightGear/Thanks) + FlightGear/COPYING FlightGear/Docs FlightGear/Src) scenery-tar: (cd ../..; \ @@ -80,7 +80,7 @@ scenery-zip: zip -r scenery-$(FG_VERSION).zip FlightGear/Scenery) bin-tar: all - cp Main/fg-$(FG_VERSION) README runfg .. + cp Main/fg-$(FG_VERSION) README Thanks runfg .. $(RM) -f ../fg$(FG_VERSION_MAJOR) $(LN) ../fg-$(FG_VERSION) ../fg$(FG_VERSION_MAJOR) (cd ../..; \ @@ -90,7 +90,8 @@ bin-tar: all FlightGear/Thanks) bin-zip: - cp Main/fg$(FG_VERSION_MAJOR).exe Main/cygwin.dll README runfg.bat .. + cp Main/fg$(FG_VERSION_MAJOR).exe Main/cygwin.dll README Thanks \ + runfg.bat .. (cd ../..; \ zip -r bin-$(FG_VERSION).zip FlightGear/fgtop \ FlightGear/fg$(FG_VERSION_MAJOR).exe FlightGear/runfg.bat \ @@ -100,6 +101,9 @@ bin-zip: #--------------------------------------------------------------------------- # $Log$ +# Revision 1.38 1998/01/22 22:03:22 curt +# Tweaks. +# # Revision 1.37 1998/01/19 19:42:58 curt # More misc. tweaks for rpk make merge. # diff --git a/Simulator/Todo b/Simulator/Todo index 38e7c24bd..97ac36f59 100644 --- a/Simulator/Todo +++ b/Simulator/Todo @@ -1,51 +1,3 @@ --------------------------------------------------------------------------- -| Done --------------------------------------------------------------------------- - -9/16/97 - Released version 0.11 - -9/22/97 - Released version 0.12 - -10/24/97 - Released version 0.13 - -11/25/97 - Released version 0.14 - -12/9/97 - Released version 0.15 - -12/9/97 - Released demtools version 0.01 - -12/10/97 - Released version 0.16 - -12/12/97 - Released verison 0.17 - -12/17/97 - Fix sun/moon initialization code so display lists aren't - re-created at every Init(). - -12/17/97 - Released version 0.18 - -12/23/97 - First stab at a reasonable sky ... I'm going to probably - leave this for now so I don't spend the rest of my life - trying to tweak it. - -12/30/97 - Event manager - -12/30/97 - Released version 0.19 - -12/30/97 - Released version 0.20 - -12/31/97 - remove Unix dependencies from .../Time/fg_time.c - -1/5/98 - Released version 0.21 - -1/6/98 - Added FGwin32.mak (a MSVC++ Makefile for building win32 versions) - -1/16/98 - Release verison 0.23 - -1/17/98 - Change all "type function();" to "type function( void );" - -1/19/98 - Compile with c++ - - -------------------------------------------------------------------------- | Todo -------------------------------------------------------------------------- diff --git a/Simulator/commondefs b/Simulator/commondefs index 8c1c75018..a368fe96d 100644 --- a/Simulator/commondefs +++ b/Simulator/commondefs @@ -95,6 +95,7 @@ MESA_LIBS = -L/usr/lib/mesa -lMesatk -lMesaaux -lMesaGLU -lMesaGL X11_LIBS = -L/usr/X11R6/lib -lXext -lXmu -lXi -lX11 GRAPHICS_LIBS = $(MESA_LIBS) $(X11_LIBS) FG_CFLAGS = $(GLOBAL_CFLAGS) $(FG_DEBUG_FLAGS) +EXT = #--------------------------------------------------------------------------- @@ -108,6 +109,7 @@ FG_CFLAGS = $(GLOBAL_CFLAGS) $(FG_DEBUG_FLAGS) # INTERFACE_FILES = GLUTmain.c GLUTkey.c # GRAPHICS_LIBS = -lGLU -lGL -lXmu -lX11 # FG_CFLAGS = $(GLOBAL_CFLAGS) $(FG_DEBUG_FLAGS) +# EXT = # TAR = gtar #--------------------------------------------------------------------------- @@ -120,6 +122,7 @@ FG_CFLAGS = $(GLOBAL_CFLAGS) $(FG_DEBUG_FLAGS) # INTERFACE_FILES = GLUTmain.c GLUTkey.c # GRAPHICS_LIBS = -L/opt/X11R6/lib -lGLU -lGL -lXext -lXmu -lXi -lX11 -lsocket # FG_CFLAGS = $(GLOBAL_CFLAGS) $(FG_DEBUG_FLAGS) +# EXT = # TAR = gtar #--------------------------------------------------------------------------- @@ -131,6 +134,7 @@ FG_CFLAGS = $(GLOBAL_CFLAGS) $(FG_DEBUG_FLAGS) # INTERFACE_FILES = GLUTmain.c GLUTkey.c # GRAPHICS_LIBS = -lglu32 -lopengl32 -luser32 -lgdi32 # FG_CFLAGS = $(GLOBAL_CFLAGS) $(FG_DEBUG_FLAGS) -DWIN32 -DUSE_RAND +# EXT = .exe # LN = cp #---------------------------------------------------------------------------