Mercurial > libdvdnav.hg
changeset 245:b4f9a592bc84 src
very small build system change: automake suggests to add headers for internal
use to the _SOURCES variable instead of _HEADERS, which should be used for
public headers
author | mroi |
---|---|
date | Wed, 19 May 2004 18:31:11 +0000 |
parents | a27c81078c3c |
children | 0ba179301f71 |
files | Makefile.am dvdread/Makefile.am |
diffstat | 2 files changed, 4 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile.am Fri Apr 09 12:15:26 2004 +0000 +++ b/Makefile.am Wed May 19 18:31:11 2004 +0000 @@ -13,7 +13,8 @@ libdvdnav_la_SOURCES = dvdnav.c \ read_cache.c navigation.c highlight.c \ - searching.c settings.c remap.c + searching.c settings.c remap.c \ + dvdnav_internal.h read_cache.h remap.h libdvdnav_la_LIBADD = $(THREAD_LIBS) \ $(top_builddir)/src/dvdread/libdvdread.la \ @@ -25,5 +26,3 @@ # -release $(DVDNAV_MAJOR).$(DVDNAV_MINOR).$(DVDNAV_SUB) include_HEADERS = dvdnav.h dvdnav_events.h dvd_types.h - -noinst_HEADERS = dvdnav_internal.h read_cache.h remap.h
--- a/dvdread/Makefile.am Fri Apr 09 12:15:26 2004 +0000 +++ b/dvdread/Makefile.am Wed May 19 18:31:11 2004 +0000 @@ -7,11 +7,10 @@ noinst_LTLIBRARIES = libdvdread.la libdvdread_la_SOURCES = dvd_reader.c nav_read.c ifo_read.c \ - dvd_input.c dvd_udf.c md5.c nav_print.c ifo_print.c + dvd_input.c dvd_udf.c md5.c nav_print.c ifo_print.c \ + bswap.h dvd_input.h dvdread_internal.h dvd_udf.h md5.h libdvdread_la_LIBADD = $(DYNAMIC_LD_LIBS) include_HEADERS = dvd_reader.h nav_read.h ifo_read.h \ nav_print.h ifo_print.h ifo_types.h nav_types.h - -noinst_HEADERS = bswap.h dvd_input.h dvdread_internal.h dvd_udf.h md5.h