682feb8f2d
Added src/Instrumentation/ with partial stab at a vacuum-driven attitude indicator.
34 lines
558 B
Makefile
34 lines
558 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 \
|
|
Instrumentation \
|
|
Model \
|
|
Navaids \
|
|
$(NETWORK_DIRS) \
|
|
Objects \
|
|
Scenery \
|
|
Sound \
|
|
Systems \
|
|
Time \
|
|
$(WEATHER_DIR) \
|
|
Main
|