1## $Id$ 2 3include $(top_srcdir)/Makefile.am.global 4 5INCLUDES = @INCLUDES@ -I$(top_srcdir)/libmp3lame -I$(top_builddir) 6# Avoid -I. which obscures libmpg123's mpg123.h 7DEFAULT_INCLUDES = 8 9EXTRA_DIST = \ 10 AUTHORS \ 11 README 12 13DEFS = @DEFS@ @CONFIG_DEFS@ 14 15if LIB_WITH_DECODER 16noinst_LTLIBRARIES = libmpgdecoder.la 17 18libmpgdecoder_la_SOURCES = common.c \ 19 dct64_i386.c \ 20 decode_i386.c \ 21 interface.c \ 22 layer1.c \ 23 layer2.c \ 24 layer3.c \ 25 tabinit.c 26else 27EXTRA_DIST += common.c \ 28 dct64_i386.c \ 29 decode_i386.c \ 30 interface.c \ 31 layer1.c \ 32 layer2.c \ 33 layer3.c \ 34 tabinit.c 35endif 36 37noinst_HEADERS = common.h \ 38 dct64_i386.h \ 39 decode_i386.h \ 40 huffman.h \ 41 interface.h \ 42 l2tables.h \ 43 layer1.h \ 44 layer2.h \ 45 layer3.h \ 46 mpg123.h \ 47 mpglib.h \ 48 tabinit.h 49 50LCLINTFLAGS= \ 51 +posixlib \ 52 +showsummary \ 53 +showalluses \ 54 +whichlib \ 55 +forcehints \ 56 -fixedformalarray \ 57 +matchanyintegral \ 58 -Dlint 59 60lclint.txt: ${libmpgdecoder_la_SOURCES} ${noinst_HEADERS} 61 @lclint ${LCLINTFLAGS} ${INCLUDES} ${DEFS} ${libmpgdecoder_la_SOURCES} 2>&1 >lclint.txt || true 62 63lclint: lclint.txt 64 more lclint.txt 65 66#$(OBJECTS): libtool 67#libtool: $(LIBTOOL_DEPS) 68# $(SHELL) $(top_builddir)/config.status --recheck 69