Rev | Line | |
---|
[14] | 1 | # The following files should be in our source distribution in addition to the |
---|
| 2 | # standard ones included by automake itself: |
---|
| 3 | EXTRA_DIST = \ |
---|
| 4 | file1.wav \ |
---|
| 5 | file2.au \ |
---|
| 6 | file3.raw |
---|
| 7 | |
---|
| 8 | # Build, but do not install the following test programs: |
---|
| 9 | noinst_PROGRAMS = \ |
---|
| 10 | test_errorstuff \ |
---|
| 11 | test_fileloader \ |
---|
| 12 | test_memoryloader \ |
---|
| 13 | test_retrostuff \ |
---|
| 14 | test_version \ |
---|
| 15 | test_waveforms |
---|
| 16 | |
---|
| 17 | # We need to link against our *own* libalut. |
---|
| 18 | LDADD = ../src/libalut.la |
---|
| 19 | |
---|
| 20 | # Specifying the following path is needed to find <AL/alut.h>. |
---|
| 21 | AM_CPPFLAGS = -I$(top_srcdir)/include |
---|
| 22 | |
---|
| 23 | # test_retrostuff tests deprecated functions, but we don't want to get compiler |
---|
| 24 | # warnings because of that. |
---|
| 25 | if WNO_DEPRECATED_DECLARATIONS |
---|
| 26 | test_retrostuff_CFLAGS = -Wno-deprecated-declarations |
---|
| 27 | endif |
---|
Note: See
TracBrowser
for help on using the repository browser.