mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 23:59:41 +02:00
23 lines
458 B
Makefile
23 lines
458 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-gcc-werror
|
|
|
|
SUBDIRS = src doc examples tests
|
|
DIST_SUBDIRS = Win32 $(SUBDIRS)
|
|
|
|
EXTRA_DIST = autogen.sh libsamplerate.spec.in samplerate.pc.in Make.bat
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = samplerate.pc
|
|
|
|
m4datadir = $(datadir)/aclocal
|
|
|
|
# Some people prefer "make test" to "make check".
|
|
|
|
test:
|
|
make check
|
|
|
|
check-asm :
|
|
(cd src && make check-asm)
|
|
|