individual aircraft to have different sounds (and cleaning up my code a fair bit). The most important user-visible change is the renaming of the /sim/sound property to /sim/sound/audible.
14 lines
304 B
Makefile
14 lines
304 B
Makefile
noinst_LIBRARIES = libSound.a
|
|
|
|
libSound_a_SOURCES = \
|
|
beacon.cxx beacon.hxx \
|
|
fg_sound.cxx fg_sound.hxx \
|
|
fg_fx.cxx fg_fx.hxx \
|
|
morse.cxx morse.hxx \
|
|
soundmgr.cxx soundmgr.hxx
|
|
|
|
if OLD_AUTOMAKE
|
|
INCLUDES += -I$(top_srcdir) -I$(top_srcdir)/src
|
|
else
|
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src
|
|
endif
|