mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 15:49:41 +02:00
In r13510 I had neglected to build with all local libraries and some of them needed attention. So, I also took the opportunity to work out the locale directory and how to keep it unmolested as well. As a result, all locales are rebuilt as expected, but into the "build" directory. As a bonus you may now test Audacity from the "build" directory and have Nyquist plugins and message catalogs available (so you can test other languages again without havint to install). So, again: mkdir buildme cd buildme ../configure make ./audacity
41 lines
852 B
Makefile
41 lines
852 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
ACLOCAL_AMFLAGS = -I M4
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-gcc-werror
|
|
|
|
if BUILD_OCTAVE_MOD
|
|
octave_dir = Octave
|
|
endif
|
|
|
|
SUBDIRS = M4 man doc Win32 src #$(octave_dir) examples regtest tests programs
|
|
DIST_SUBDIRS = M4 man doc Win32 src Octave examples regtest tests programs
|
|
|
|
EXTRA_DIST = libsndfile.spec.in sndfile.pc.in
|
|
|
|
CLEANFILES = *~
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = sndfile.pc
|
|
|
|
m4datadir = $(datadir)/aclocal
|
|
|
|
#===============================================================================
|
|
|
|
test: check-recursive
|
|
|
|
# Target to make autogenerated files.
|
|
genfiles :
|
|
(cd src ; make genfiles)
|
|
(cd tests ; make genfiles)
|
|
|
|
|
|
testprogs :
|
|
(cd src ; make testprogs)
|
|
(cd tests ; make testprogs)
|
|
|
|
|
|
test-tarball : build-test-tarball.mk
|
|
make all
|
|
make -f build-test-tarball.mk
|