mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-18 22:00:00 +01:00
16 lines
432 B
Makefile
16 lines
432 B
Makefile
INCLUDES = -I$(top_srcdir)/include \
|
|
-I$(top_srcdir) -I$(includedir) \
|
|
-DG_LOG_DOMAIN=\"libvido\" -DLIBVIDO_VERSION=\"$(VERSION)\"
|
|
|
|
LIBVEVO = $(top_builddir)/src/libvevo.la
|
|
|
|
# *********************************************************************
|
|
# The tools themselves
|
|
EXAMPLES_BIN = hosttest
|
|
|
|
bin_PROGRAMS = $(EXAMPLES_BIN)
|
|
|
|
hosttest_SOURCES = testhost.c
|
|
hosttest_LDADD = -lvevo -ldl
|
|
hosttest_LDFLAGS = -export-dynamic
|