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
18 lines
549 B
Diff
18 lines
549 B
Diff
Index: lib-src/portaudio-v19/Makefile.in
|
|
===================================================================
|
|
--- lib-src/portaudio-v19/Makefile.in (revision 13510)
|
|
+++ lib-src/portaudio-v19/Makefile.in (working copy)
|
|
@@ -156,8 +156,11 @@
|
|
SUBDIRS =
|
|
@ENABLE_CXX_TRUE@SUBDIRS += bindings/cpp
|
|
|
|
-all: lib/$(PALIB) all-recursive tests examples selftests
|
|
+prep:
|
|
+ mkdir -p qa/loopback/src/ src/hostapi/skeleton/ $(SRC_DIRS)
|
|
|
|
+all: prep lib/$(PALIB) all-recursive tests examples selftests
|
|
+
|
|
tests: bin-stamp $(TESTS)
|
|
|
|
examples: bin-stamp $(EXAMPLES)
|