mirror of
https://github.com/alexkay/spek.git
synced 2025-04-19 18:07:37 +03:00
24 lines
262 B
Makefile
24 lines
262 B
Makefile
TESTS = \
|
|
test-utils \
|
|
test
|
|
|
|
check_PROGRAMS = $(TESTS)
|
|
|
|
noinst_HEADERS = \
|
|
test.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-include config.h \
|
|
-I$(top_srcdir)/lib \
|
|
-pthread
|
|
|
|
AM_CFLAGS = \
|
|
$(FFMPEG_CFLAGS)
|
|
|
|
LDADD = \
|
|
../lib/libspek.a \
|
|
$(FFMPEG_LIBS)
|
|
|
|
AM_LDFLAGS = \
|
|
-pthread
|