diff options
author | Jamie Bullock <jamie@jamiebullock.com> | 2014-06-05 20:25:06 +0100 |
---|---|---|
committer | Jamie Bullock <jamie@jamiebullock.com> | 2014-06-05 20:25:06 +0100 |
commit | 1c1beffad69df7dd462034ab4e93d5d26cd8e283 (patch) | |
tree | ac19f7d2b5873c333eb1506604d83251d4e31363 | |
parent | ad4a06fa45d1ba3268adca8b19d6be4b7b573ea5 (diff) | |
download | LibXtract-1c1beffad69df7dd462034ab4e93d5d26cd8e283.tar.gz LibXtract-1c1beffad69df7dd462034ab4e93d5d26cd8e283.tar.bz2 LibXtract-1c1beffad69df7dd462034ab4e93d5d26cd8e283.zip |
Use AM_CPPFLAGS instead of AM_CFLAGS
-rw-r--r-- | examples/simpletest/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/simpletest/Makefile.am b/examples/simpletest/Makefile.am index d4d9230..9f4256a 100644 --- a/examples/simpletest/Makefile.am +++ b/examples/simpletest/Makefile.am @@ -1,8 +1,8 @@ MAINTAINERCLEANFILES = Makefile.in noinst_PROGRAMS = simpletest -AM_CFLAGS = -I$(top_srcdir)/src -simpletest_SOURCES = simpletest.c +AM_CPPFLAGS = -I$(top_srcdir)/src +simpletest_SOURCES = simpletest.cpp WaveFile.cpp simpletest_LDADD = ../../src/libxtract.la |