1## Process this file with automake to produce Makefile.in 2 3INCLUDES = $(INCLTDL) \ 4 -I$(top_builddir) -I$(top_builddir)/include \ 5 -I$(top_srcdir)/include \ 6 -I$(top_srcdir)/src/liboggz \ 7 @OGG_CFLAGS@ 8 9EXTRA_DIST = Version_script.in 10 11# Libraries to build 12lib_LTLIBRARIES = liboggz.la 13 14liboggz_la_SOURCES = \ 15 oggz.c \ 16 oggz_private.h oggz_byteorder.h oggz_compat.h oggz_macros.h \ 17 oggz_comments.c \ 18 oggz_io.c \ 19 oggz_read.c oggz_write.c \ 20 oggz_seek.c \ 21 oggz_auto.c oggz_auto.h \ 22 oggz_stream.c oggz_stream_private.h \ 23 oggz_table.c \ 24 oggz_vector.c oggz_vector.h \ 25 oggz_dlist.c oggz_dlist.h \ 26 metric_internal.c \ 27 dirac.c dirac.h 28 29liboggz_la_LDFLAGS = -version-info @SHARED_VERSION_INFO@ @SHLIB_VERSION_ARG@ 30liboggz_la_LIBADD = @OGG_LIBS@ 31