mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
ed8dac9fa8
Original commit message from CVS: Remove cothreads.[ch] from tests/cothreads/ and replace then with a rule in the Makefile.am to generate symlinks to the live versions of the code in gst/ : fixes a compile error, and should keep things cleaner.
16 lines
499 B
Makefile
16 lines
499 B
Makefile
noinst_PROGRAMS = test simple
|
|
|
|
test_SOURCES = test.c cothreads.c object.c looper.c
|
|
test_CFLAGS = $(shell gnome-config --cflags gnomeui)
|
|
test_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
|
|
simple_SOURCES = simple.c cothreads.c
|
|
simple_CFLAGS = $(shell gnome-config --cflags gnomeui)
|
|
simple_LDFLAGS = $(shell gnome-config --libs gnomeui)
|
|
|
|
noinst_HEADERS = cothreads.h object.h looper.h
|
|
|
|
cothreads.c: $(top_srcdir)/gst/cothreads.c
|
|
ln -sf $< $@
|
|
cothreads.h: $(top_srcdir)/gst/cothreads.h
|
|
ln -sf $< $@
|