forked from libass/libass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
51 lines (43 loc) · 1.3 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -I$(top_srcdir)/libass
AM_CFLAGS = -std=gnu99 -D_GNU_SOURCE
EXTRA_DIST = libass.pc.in Changelog MAINTAINERS RELEASEVERSION ltnasm.sh
# Meson build setup
EXTRA_DIST += gen_defs.py meson_options.txt meson.build \
libass/meson.build libass/ass/meson.build \
profile/meson.build test/meson.build
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libass.pc
nasm_verbose = $(nasm_verbose_$(V))
nasm_verbose_ = $(nasm_verbose_$(AM_DEFAULT_VERBOSITY))
nasm_verbose_0 = @echo " NASM " $@;
lib_LTLIBRARIES =
noinst_LTLIBRARIES =
noinst_PROGRAMS =
check_PROGRAMS =
TESTS =
include libass/Makefile_library.am
include Makefile_util.am
# Tests
if ENABLE_FUZZ
check: check-art-fuzz
.PHONY: check-art-fuzz
check-art-fuzz: fuzz/fuzz
@if [ -z '$(ART_SAMPLES)' ] ; then \
echo "ART_SAMPLES location not set; cannot run regression tests!"; \
else \
cd '$(ART_SAMPLES)'/crash/ ; \
./run-all.sh '$(abs_top_builddir)'/fuzz/fuzz ; \
fi
endif
if ENABLE_COMPARE
check: check-art-compare
.PHONY: check-art-compare
check-art-compare: compare/compare
@if [ -z '$(ART_SAMPLES)' ] ; then \
echo "ART_SAMPLES location not set; cannot run regression tests!"; \
else \
cd '$(ART_SAMPLES)'/regression/ ; \
./run-all.sh '$(abs_top_builddir)'/compare/compare ; \
fi
endif