026a2bb4b0
I have implemented a Honeywell MK VIII EGPWS emulation for FlightGear. The MK VIII is an Enhanced Ground Proximity Warning System aimed at regional turboprop and small turbofan aircrafts such as the Citation, Citation Bravo, B1900D, Beechcraft 99 and L410. Frederic Bouvier: make the MSVC compilation possible. Rearrange base package directories.
19 lines
526 B
Makefile
Executable file
19 lines
526 B
Makefile
Executable file
stylesheet = ../assembly/assembly.xsl
|
|
|
|
buttons = caution0 caution1 flap-override inhibit steep-approach terrain-inhibit warning0 warning1
|
|
lamps = glideslope-cancelled inop terrain-fail
|
|
|
|
output_files = $(foreach b,$(buttons),$(b).xml $(b)-actions.xml) $(foreach l,$(lamps),$(l).xml)
|
|
|
|
all_files = assembly.rgb $(output_files)
|
|
|
|
all: $(all_files)
|
|
|
|
$(output_files): mk-viii.xml $(stylesheet)
|
|
xsltproc $(stylesheet) mk-viii.xml
|
|
|
|
assembly.rgb: ../assembly/assembly.rgb
|
|
cp -p ../assembly/assembly.rgb ./
|
|
|
|
clean:
|
|
rm -f $(all_files)
|