Revision 0503738098d7585573cd2fb0710af2804bc387fa authored by Filip Roséen on 08 March 2016, 14:11:54 UTC, committed by Jean-Baptiste Kempf on 08 March 2016, 16:51:49 UTC
Introduced `EbmlTypeDispatcher` to the functions in question, making
them more readable (as well as faster). This commit is a very good
example of how the new header `Ebml_dispatcher.hpp` allows for better
and faster code.

Also removed some legacy code that has been disabled due to, by
matroska, deprecated types.
1 parent 421416d
Raw File
Makefile.am
pkglib_LTLIBRARIES = libcompat.la
libcompat_la_SOURCES = dummy.c
libcompat_la_LIBADD = $(LTLIBOBJS) $(LIBRT)
libcompat_la_LDFLAGS = -no-undefined -static

BUILT_SOURCES = dummy.c
CLEANFILES = dummy.c
AUTOMAKE_OPTIONS = subdir-objects

dummy.c:
	$(AM_V_at)rm -f dummy.c
	$(AM_V_GEN)echo '/* Automatically generated */' > dummy.c


check_PROGRAMS = \
	test_strnstr

TESTS = $(check_PROGRAMS)

test_strnstr_SOURCES = test/strnstr.c
test_strnstr_LDADD = libcompat.la
back to top