| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- ## $Id$
- include $(top_srcdir)/Makefile.am.global
- SUBDIRS = i386 vector
- lib_LTLIBRARIES = libmp3lame.la
- if HAVE_NASM
- cpu_ldadd = $(top_builddir)/libmp3lame/@CPUTYPE@/liblameasmroutines.la
- endif
- if WITH_VECTOR
- vector_ldadd = $(top_builddir)/libmp3lame/vector/liblamevectorroutines.la
- endif
- if LIB_WITH_DECODER
- decoder_ldadd = $(top_builddir)/mpglib/libmpgdecoder.la
- else
- decoder_ldadd =
- endif
- libmp3lame_la_LIBADD = $(cpu_ldadd) $(vector_ldadd) $(decoder_ldadd) \
- $(CONFIG_MATH_LIB)
- libmp3lame_la_LDFLAGS = -version-info @LIB_MAJOR_VERSION@:@LIB_MINOR_VERSION@ \
- -export-symbols $(top_srcdir)/include/libmp3lame.sym \
- -no-undefined
- INCLUDES = @INCLUDES@ -I$(top_srcdir)/mpglib -I$(top_builddir)
- DEFS = @DEFS@ @CONFIG_DEFS@
- EXTRA_DIST = \
- lame.rc \
- vbrquantize.h \
- logoe.ico
- libmp3lame_la_SOURCES = \
- VbrTag.c \
- bitstream.c \
- encoder.c \
- fft.c \
- gain_analysis.c \
- id3tag.c \
- lame.c \
- newmdct.c \
- presets.c \
- psymodel.c \
- quantize.c \
- quantize_pvt.c \
- reservoir.c \
- set_get.c \
- tables.c \
- takehiro.c \
- util.c \
- vbrquantize.c \
- version.c \
- mpglib_interface.c
- noinst_HEADERS= \
- VbrTag.h \
- bitstream.h \
- encoder.h \
- fft.h \
- gain_analysis.h \
- id3tag.h \
- l3side.h \
- lame-analysis.h \
- lame_global_flags.h \
- lameerror.h \
- machine.h \
- newmdct.h \
- psymodel.h \
- quantize.h \
- quantize_pvt.h \
- reservoir.h \
- set_get.h \
- tables.h \
- util.h \
- vbrquantize.h \
- version.h
- CLEANFILES = lclint.txt
- LCLINTFLAGS= \
- +posixlib \
- +showsummary \
- +showalluses \
- +whichlib \
- +forcehints \
- -fixedformalarray \
- +matchanyintegral \
- -Dlint
- lclint.txt: ${libmp3lame_la_SOURCES} ${noinst_HEADERS}
- @lclint ${LCLINTFLAGS} ${INCLUDES} ${DEFS} ${libmp3lame_la_SOURCES} 2>&1 >lclint.txt || true
- lclint: lclint.txt
- more lclint.txt
- #$(OBJECTS): libtool
- #libtool: $(LIBTOOL_DEPS)
- # $(SHELL) $(top_builddir)/config.status --recheck
|