diff options
| author | Stephen Sinclair <radarsat1@gmail.com> | 2016-02-12 11:05:34 -0300 |
|---|---|---|
| committer | Stephen Sinclair <radarsat1@gmail.com> | 2016-02-12 12:13:20 -0300 |
| commit | fbcd1910a3ea72ec6dc50d50c3f7848e6861abc4 (patch) | |
| tree | 1ecdfec46e197fe1f44944842a70653960241290 /Makefile.am | |
| parent | 0f60381cb4ed79bb40979c106ee1515df85c4873 (diff) | |
Port the build system to automake.
Diffstat (limited to 'Makefile.am')
| -rw-r--r-- | Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..00927e8 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,18 @@ +SUBDIRS = . tests +if MAKE_DOC +SUBDIRS += doc +endif + +lib_LTLIBRARIES = %D%/librtaudio.la +%C%_librtaudio_la_LDFLAGS = -no-undefined -export-dynamic -version-info @SO_VERSION@ +%C%_librtaudio_la_SOURCES = \ + %D%/RtAudio.cpp + +rtaudio_incdir = $(includedir)/rtaudio +rtaudio_inc_HEADERS = \ + %D%/RtAudio.h + +pkgconfigdatadir = $(libdir)/pkgconfig +pkgconfigdata_DATA = rtaudio.pc + +EXTRA_DIST = autogen.sh readme install.txt contrib include |
