mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
59d1e1d051
Original commit message from CVS: The test apps I'm using to track down cleanup issues.
13 lines
433 B
Makefile
13 lines
433 B
Makefile
testprogs = cleanup1 cleanup2 cleanup3
|
|
|
|
TESTS = $(testprogs)
|
|
|
|
check_PROGRAMS = $(testprogs)
|
|
|
|
# we have nothing but apps here, we can do this safely
|
|
cleanup1_LDADD = $(GST_LIBS) #-ldmallocth
|
|
cleanup1_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
|
cleanup2_LDADD = $(GST_LIBS)
|
|
cleanup2_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
|
cleanup3_LDADD = $(GST_LIBS)
|
|
cleanup3_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|