1fe50d4cd2
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.
32 lines
493 B
Makefile
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
|