]> git.mxchange.org Git - flightgear.git/blob - Tools/make.inc
Adopted Gnu automake/autoconf system.
[flightgear.git] / Tools / make.inc
1 # Hey Emacs, this is a Makefile. -*- Mode: Makefile -*-
2 #
3 # Common FGTools Makefile section
4 #
5 # Written by Curtis Olson, started October 1997.
6 #
7 # Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
8 #
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #
23 # $Id$
24 # (Log is kept at end of this file)
25 #---------------------------------------------------------------------------
26
27
28 VERSION = 0.02
29
30 #---------------------------------------------------------------------------
31 # Choose your weapons
32 #---------------------------------------------------------------------------
33
34 CC = gcc
35 FLEX = flex -f -L
36 BISON = bison -v --no-lines
37 AR = ar
38 RANLIB = ranlib
39
40
41 #---------------------------------------------------------------------------
42 # Global Compile Options
43 #
44 # You may set FG_CFLAGS to include any of the following options depending on 
45 # your environment:
46 #
47 # -g           - Compile with debugging symbols
48 #
49 # -Wall        - Enable full compiler warnings
50 #
51 # -O2          - Enable compiler optimization
52 #
53 #---------------------------------------------------------------------------
54
55 GLOBAL_CFLAGS = -g -Wall -DVERSION=\"$(VERSION)\"
56
57
58 #---------------------------------------------------------------------------
59 # Platform specific compile options, these should be set with FG_CFLAGS
60 # below.  These have been predefined for the supported platforms below.
61 #
62 # -DNO_PRINTF -  Disable all printf()'s.  Works by replacing the printf
63 #                fuction with an empty function.
64 #
65 # -DUSE_ITIMER - Use setitimer(), getitimer(), and signal() to mimic
66 #                a real time system and call the flight model routines
67 #                at a regular interval, rather than between screen updates
68 #                which can be highly variable.  This can make the flight
69 #                model calculations much smoother.
70 #
71 # -DUSE_FTIME -  Use ftime() to get an accurate current time instead of
72 #                gettimeofday()
73 #
74 # -DUSE_RAND  -  Use rand() instead of random()
75 #
76 #---------------------------------------------------------------------------
77
78
79 #---------------------------------------------------------------------------
80 # Uncomment one of the following sections depending on your system
81 #
82 # You may set FG_GRAPHICS to include any of the following options depending
83 # on your environment:
84 #---------------------------------------------------------------------------
85
86 #---------------------------------------------------------------------------
87 # SGI IRIX with the GLUT toolkit 
88 #     (Surprisingly, this also works on our SunOS 4.x machine with the 
89 #     way we have Mesa & Glut installed.)
90 #
91 # INTERFACE_FLAGS = -DGLUT
92 # INTERFACE_LIBS = -lglut
93 # INTERFACE_FILES = GLUTmain.c GLUTkey.c
94 # GRAPHICS_LIBS = -lGLU -lGL -lXmu -lX11
95 # FG_CFLAGS = $(GLOBAL_CFLAGS)
96 #---------------------------------------------------------------------------
97
98 #---------------------------------------------------------------------------
99 # Linux/Mesa with the GLUT toolkit
100 #
101 INTERFACE_FLAGS = -DGLUT
102 INTERFACE_LIBS = -lglut
103 INTERFACE_FILES = GLUTmain.c GLUTkey.c
104 MESA_LIBS = -L/usr/lib/mesa -lMesatk -lMesaaux -lMesaGLU -lMesaGL
105 X11_LIBS =  -L/usr/X11R6/lib -lXext -lXmu -lXi -lX11
106 GRAPHICS_LIBS = $(MESA_LIBS) $(X11_LIBS)
107 FG_CFLAGS = $(GLOBAL_CFLAGS)
108 #---------------------------------------------------------------------------
109
110 #---------------------------------------------------------------------------
111 # Cygnus Win32 (gcc based) with a static version of the GLUT toolkit
112 #
113 # INTERFACE_FLAGS = -DGLUT 
114 # INTERFACE_LIBS = ../Win32/libglut.a
115 # INTERFACE_FILES = GLUTmain.c GLUTkey.c
116 # GRAPHICS_LIBS = -lglu32 -lopengl32 -luser32 -lgdi32
117 # FG_CFLAGS = $(GLOBAL_CFLAGS) -DWIN32 -DUSE_RAND
118 #---------------------------------------------------------------------------
119
120
121 #---------------------------------------------------------------------------
122 # $Log$
123 # Revision 1.2  1997/12/10 01:18:26  curt
124 # Initial revision.
125 #
126 # Revision 1.1  1997/10/20 19:52:18  curt
127 # Initial revision.
128 #