1997-06-27 21:37:59 +00:00
|
|
|
# Hey Emacs, this is a Makefile. -*- Mode: Makefile -*-
|
|
|
|
#
|
|
|
|
# Common Makefile section
|
|
|
|
#
|
|
|
|
# Written by Curtis Olson, started May 1997.
|
|
|
|
#
|
|
|
|
# Copyright (C) 1997 Curtis L. Olson - curt@infoplane.com
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
# (Log is kept at end of this file)
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
1997-09-16 22:14:47 +00:00
|
|
|
VERSION = 0.12
|
1997-07-18 23:41:20 +00:00
|
|
|
|
1997-06-27 21:37:59 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# Choose your weapons
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
CC = gcc
|
|
|
|
FLEX = flex -f -L
|
|
|
|
BISON = bison -v --no-lines
|
|
|
|
AR = ar
|
1997-07-16 20:04:42 +00:00
|
|
|
RANLIB = ranlib
|
1997-06-27 21:37:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# Global Compile Options
|
|
|
|
#
|
|
|
|
# You may set FG_CFLAGS to include any of the following options depending on
|
|
|
|
# your environment:
|
|
|
|
#
|
|
|
|
# -g - Compile with debugging symbols
|
|
|
|
#
|
|
|
|
# -Wall - Enable full compiler warnings
|
|
|
|
#
|
|
|
|
# -O2 - Enable compiler optimization
|
|
|
|
#
|
1997-07-18 23:41:20 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
1997-08-22 21:34:32 +00:00
|
|
|
GLOBAL_CFLAGS = -g -Wall -DVERSION=\"$(VERSION)\"
|
1997-07-18 23:41:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# Platform specific compile options, these should be set with FG_CFLAGS
|
|
|
|
# below. These have been predefined for the supported platforms below.
|
|
|
|
#
|
|
|
|
# -DNO_PRINTF - Disable all printf()'s. Works by replacing the printf
|
|
|
|
# fuction with an empty function.
|
|
|
|
#
|
1997-06-27 21:37:59 +00:00
|
|
|
# -DUSE_ITIMER - Use setitimer(), getitimer(), and signal() to mimic
|
|
|
|
# a real time system and call the flight model routines
|
|
|
|
# at a regular interval, rather than between screen updates
|
|
|
|
# which can be highly variable. This can make the flight
|
1997-07-12 02:13:04 +00:00
|
|
|
# model calculations much smoother.
|
|
|
|
#
|
|
|
|
# -DUSE_FTIME - Use ftime() to get an accurate current time instead of
|
|
|
|
# gettimeofday()
|
|
|
|
#
|
1997-07-16 20:04:42 +00:00
|
|
|
# -DUSE_RAND - Use rand() instead of random()
|
|
|
|
#
|
1997-06-27 21:37:59 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# Uncomment one of the following sections depending on your system
|
|
|
|
#
|
|
|
|
# You may set FG_GRAPHICS to include any of the following options depending
|
|
|
|
# on your environment:
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
1997-07-18 14:28:34 +00:00
|
|
|
# SGI IRIX with the GLUT toolkit
|
|
|
|
# (Surprisingly, this also works on our SunOS 4.x machine with the
|
|
|
|
# way we have Mesa & Glut installed.)
|
1997-06-27 21:37:59 +00:00
|
|
|
#
|
|
|
|
# INTERFACE_FLAGS = -DGLUT
|
|
|
|
# INTERFACE_LIBS = -lglut
|
1997-08-22 21:34:32 +00:00
|
|
|
# INTERFACE_FILES = GLUTmain.c GLUTkey.c
|
1997-06-27 21:37:59 +00:00
|
|
|
# GRAPHICS_LIBS = -lGLU -lGL -lXmu -lX11
|
1997-07-18 23:41:20 +00:00
|
|
|
# FG_CFLAGS = $(GLOBAL_CFLAGS)
|
1997-06-27 21:37:59 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# Linux/Mesa with the GLUT toolkit
|
|
|
|
#
|
1997-07-19 22:41:34 +00:00
|
|
|
INTERFACE_FLAGS = -DGLUT
|
|
|
|
INTERFACE_LIBS = -lglut
|
1997-08-22 21:34:32 +00:00
|
|
|
INTERFACE_FILES = GLUTmain.c GLUTkey.c
|
1997-07-19 22:41:34 +00:00
|
|
|
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)
|
1997-06-27 21:37:59 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
1997-07-18 23:41:20 +00:00
|
|
|
# Cygnus Win32 (gcc based) with a static version of the GLUT toolkit
|
1997-06-27 21:37:59 +00:00
|
|
|
#
|
1997-07-19 22:41:34 +00:00
|
|
|
# INTERFACE_FLAGS = -DGLUT
|
|
|
|
# INTERFACE_LIBS = ../Win32/libglut.a
|
1997-08-22 21:34:32 +00:00
|
|
|
# INTERFACE_FILES = GLUTmain.c GLUTkey.c
|
1997-07-19 22:41:34 +00:00
|
|
|
# GRAPHICS_LIBS = -lglu32 -lopengl32 -luser32 -lgdi32
|
|
|
|
# FG_CFLAGS = $(GLOBAL_CFLAGS) -DWIN32 -DUSE_RAND
|
1997-06-27 21:37:59 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# $Log$
|
1997-09-16 22:14:47 +00:00
|
|
|
# Revision 1.14 1997/09/16 22:14:47 curt
|
|
|
|
# Tweaked time of day lighting equations. Don't draw stars during the day.
|
|
|
|
#
|
1997-09-04 02:17:18 +00:00
|
|
|
# Revision 1.13 1997/09/04 02:17:19 curt
|
|
|
|
# Shufflin' stuff.
|
|
|
|
#
|
1997-08-25 20:27:21 +00:00
|
|
|
# Revision 1.12 1997/08/25 20:27:21 curt
|
|
|
|
# Merged in initial HUD and Joystick code.
|
|
|
|
#
|
1997-08-22 21:34:32 +00:00
|
|
|
# Revision 1.11 1997/08/22 21:34:33 curt
|
|
|
|
# Doing a bit of reorganizing and house cleaning.
|
|
|
|
#
|
1997-08-16 12:22:17 +00:00
|
|
|
# Revision 1.10 1997/08/16 12:22:19 curt
|
|
|
|
# Tweaks for new version.
|
|
|
|
#
|
1997-07-19 22:41:34 +00:00
|
|
|
# Revision 1.9 1997/07/19 22:41:35 curt
|
|
|
|
# tweaks
|
|
|
|
#
|
1997-07-18 23:41:20 +00:00
|
|
|
# Revision 1.8 1997/07/18 23:41:20 curt
|
|
|
|
# Tweaks for building with Cygnus Win32 compiler.
|
|
|
|
#
|
1997-07-18 14:28:34 +00:00
|
|
|
# Revision 1.7 1997/07/18 14:28:34 curt
|
|
|
|
# Hacked in some support for wind/turbulence.
|
|
|
|
#
|
1997-07-16 20:04:42 +00:00
|
|
|
# Revision 1.6 1997/07/16 20:04:42 curt
|
|
|
|
# Minor tweaks to aid Win32 port.
|
|
|
|
#
|
1997-07-12 02:24:37 +00:00
|
|
|
# Revision 1.5 1997/07/12 02:25:53 curt
|
|
|
|
# Added ranlib.
|
|
|
|
#
|
1997-07-12 02:13:04 +00:00
|
|
|
# Revision 1.4 1997/07/12 02:13:04 curt
|
|
|
|
# Add ftime() support for those that don't have gettimeofday()
|
|
|
|
#
|
1997-07-09 21:31:08 +00:00
|
|
|
# Revision 1.3 1997/07/09 21:31:08 curt
|
|
|
|
# Working on making the ground "hard."
|
|
|
|
#
|
1997-07-07 20:59:47 +00:00
|
|
|
# Revision 1.2 1997/07/07 20:59:48 curt
|
|
|
|
# Working on scenery transformations to enable us to fly fluidly over the
|
|
|
|
# poles with no discontinuity/distortion in scenery.
|
|
|
|
#
|
1997-06-27 21:37:59 +00:00
|
|
|
# Revision 1.1 1997/06/27 21:38:00 curt
|
|
|
|
# Working on Makefile structure.
|
|
|
|
#
|