2007-05-14 09:55:24 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
2011-08-07 09:54:24 +00:00
|
|
|
ACLOCAL_AMFLAGS = -I M4
|
|
|
|
|
2008-02-09 23:26:05 +00:00
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-gcc-werror
|
|
|
|
|
2007-09-07 00:16:40 +00:00
|
|
|
if BUILD_OCTAVE_MOD
|
|
|
|
octave_dir = Octave
|
|
|
|
endif
|
|
|
|
|
2008-10-21 11:49:55 +00:00
|
|
|
SUBDIRS = M4 man doc Win32 src $(octave_dir) examples regtest tests programs
|
|
|
|
DIST_SUBDIRS = M4 man doc Win32 src Octave examples regtest tests programs
|
|
|
|
|
2009-03-25 10:47:20 +00:00
|
|
|
EXTRA_DIST = libsndfile.spec.in sndfile.pc.in
|
2007-09-07 00:16:40 +00:00
|
|
|
|
2010-10-06 11:16:41 +00:00
|
|
|
CLEANFILES = *~
|
2007-09-07 00:16:40 +00:00
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
pkgconfig_DATA = sndfile.pc
|
|
|
|
|
|
|
|
m4datadir = $(datadir)/aclocal
|
|
|
|
|
2010-10-06 11:16:41 +00:00
|
|
|
#===============================================================================
|
|
|
|
|
2007-05-14 09:55:24 +00:00
|
|
|
test: check-recursive
|
|
|
|
|
2005-02-07 23:42:36 +00:00
|
|
|
# Target to make autogenerated files.
|
|
|
|
genfiles :
|
|
|
|
(cd src ; make genfiles)
|
|
|
|
(cd tests ; make genfiles)
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2011-07-07 09:47:51 +00:00
|
|
|
checkprograms :
|
|
|
|
(cd src ; make libsndfile.la checkprograms)
|
|
|
|
(cd tests ; make checkprograms)
|
2007-05-14 09:55:24 +00:00
|
|
|
|
2009-09-27 11:46:30 +00:00
|
|
|
testprogs :
|
|
|
|
(cd src ; make testprogs)
|
|
|
|
(cd tests ; make testprogs)
|
|
|
|
|
|
|
|
|
2009-09-27 03:32:41 +00:00
|
|
|
test-tarball : build-test-tarball.mk
|
2013-04-05 08:21:18 +00:00
|
|
|
(cd src ; make all libsndfile.la checkprograms)
|
|
|
|
(cd tests ; make all checkprograms)
|
2009-09-27 03:32:41 +00:00
|
|
|
make -f build-test-tarball.mk
|