1
0
Fork 0
flightgear/src/Makefile.am
david 1fe50d4cd2 Removed configuration option --with-old-mouse and FG_OLD_MOUSE macro.
Removed configuration option --with-new-environment and
FG_NEW_ENVIRONMENT macro.

Added configuration option --with-weathercm and FG_WEATHERCM macro.

FGEnvironment is now the default; use --with-weathercm to get the old
weather.
2002-05-12 00:12:19 +00:00

32 lines
493 B
Makefile

if ENABLE_WEATHERCM
WEATHER_DIR = WeatherCM
else
WEATHER_DIR = Environment
endif
if ENABLE_NETWORK_OLK
NETWORK_DIRS = Network NetworkOLK
else
NETWORK_DIRS = Network
endif
SUBDIRS = \
Include \
Aircraft \
Airports \
ATC \
Autopilot \
Cockpit \
Controls \
FDM \
GUI \
Input \
Model \
Navaids \
$(NETWORK_DIRS) \
Objects \
Scenery \
Sound \
Time \
$(WEATHER_DIR) \
Main