mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 07:39:42 +02:00
25 lines
565 B
Makefile
25 lines
565 B
Makefile
|
|
AUTOMAKE_OPTIONS = foreign
|
|
ACLOCAL_AMFLAGS = -I build-scripts
|
|
|
|
SUBDIRS = libtwolame frontend simplefrontend doc tests
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = twolame.pc
|
|
|
|
INDENT = indent -npro -kr -nsob -fca -blf -ip1 -hnl -l100 -lc100 -nut -ts4 -v
|
|
indent:
|
|
find $(top_srcdir) -type f -name "*.[ch]" -print -exec $(INDENT) {} ';'
|
|
|
|
EXTRA_DIST = \
|
|
autogen.sh \
|
|
twolame.pc.in \
|
|
win32/configwin.h \
|
|
win32/libtwolame_dll.sln \
|
|
win32/libtwolame_dll.vcproj \
|
|
win32/libtwolame_static.sln \
|
|
win32/libtwolame_static.vcproj \
|
|
win32/winutil.h
|
|
|
|
test: check
|