mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 09:29:42 +00:00
c5ee2d3051
Original commit message from CVS: use AM_CFLAGS dummy NULL init for vars to deal with warnings
22 lines
589 B
Makefile
22 lines
589 B
Makefile
testprogs = thread1 thread2 thread3 thread4 thread5 threadb
|
|
testsfailing = threadc threadd threade threadf
|
|
|
|
TESTS = $(testprogs)
|
|
|
|
check_PROGRAMS = $(testprogs)
|
|
|
|
noinst_PROGRAMS = $(testsfailing)
|
|
|
|
LDADD = $(GST_LIBS)
|
|
AM_CFLAGS = $(GST_CFLAGS)
|
|
|
|
thread1_SOURCES = thread.c
|
|
thread1_CFLAGS = -DTESTNUM=1 $(AM_CFLAGS)
|
|
thread2_SOURCES = thread.c
|
|
thread2_CFLAGS = -DTESTNUM=2 $(AM_CFLAGS)
|
|
thread3_SOURCES = thread.c
|
|
thread3_CFLAGS = -DTESTNUM=3 $(AM_CFLAGS)
|
|
thread4_SOURCES = thread.c
|
|
thread4_CFLAGS = -DTESTNUM=4 $(AM_CFLAGS)
|
|
thread5_SOURCES = thread.c
|
|
thread5_CFLAGS = -DTESTNUM=5 $(AM_CFLAGS)
|