Mercurial > libdvdnav.hg
annotate Makefile.am @ 240:585e0f683973 src
nesting and indentation do not match, but I think the braces do not actually
change anything
author | mroi |
---|---|
date | Mon, 16 Feb 2004 15:53:20 +0000 |
parents | 78ad883b5a9f |
children | b4f9a592bc84 |
rev | line source |
---|---|
225 | 1 include $(top_srcdir)/misc/Makefile.common |
0 | 2 |
225 | 3 SUBDIRS = dvdread vm |
169 | 4 |
225 | 5 includedir = ${prefix}/include/dvdnav |
0 | 6 |
225 | 7 AM_CPPFLAGS = -DDVDNAV_COMPILE $(THREAD_CFLAGS) \ |
8 -I$(top_srcdir)/src/dvdread -I$(top_srcdir)/src/vm | |
0 | 9 |
119 | 10 EXTRA_DIST = README.MAP FELLOWSHIP.map |
114 | 11 |
225 | 12 lib_LTLIBRARIES = libdvdnav.la |
0 | 13 |
225 | 14 libdvdnav_la_SOURCES = dvdnav.c \ |
15 read_cache.c navigation.c highlight.c \ | |
16 searching.c settings.c remap.c | |
0 | 17 |
225 | 18 libdvdnav_la_LIBADD = $(THREAD_LIBS) \ |
19 $(top_builddir)/src/dvdread/libdvdread.la \ | |
20 $(top_builddir)/src/vm/libdvdvm.la | |
0 | 21 |
225 | 22 libdvdnav_la_LDFLAGS = \ |
23 -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ | |
236
78ad883b5a9f
Makefiles have to use tabs for indentation (GNU make does not care, but other
mroi
parents:
235
diff
changeset
|
24 -export-symbols-regex "(^dvdnav.*|^nav.*|^ifo.*|^DVD.*)" |
225 | 25 # -release $(DVDNAV_MAJOR).$(DVDNAV_MINOR).$(DVDNAV_SUB) |
0 | 26 |
225 | 27 include_HEADERS = dvdnav.h dvdnav_events.h dvd_types.h |
0 | 28 |
225 | 29 noinst_HEADERS = dvdnav_internal.h read_cache.h remap.h |