finalcut/test/Makefile.am

29 lines
675 B
Makefile
Raw Normal View History

2015-05-23 13:35:12 +02:00
#----------------------------------------------------------------------
# Makefile.am - The Final Cut example programs
#----------------------------------------------------------------------
AM_LDFLAGS = -L$(top_builddir)/src/.libs -lfinal
AM_CPPFLAGS = -Wall -Werror -I$(top_srcdir)/src
noinst_PROGRAMS = \
hello \
dialog \
2015-05-24 19:15:03 +02:00
input-dialog \
2015-05-25 23:39:09 +02:00
mandelbrot \
2015-06-08 20:42:17 +02:00
calculator \
watch \
2015-05-23 13:35:12 +02:00
timer \
ui \
string
2015-05-23 13:35:12 +02:00
hello_SOURCES = hello.cpp
dialog_SOURCES = dialog.cpp
2015-05-24 19:15:03 +02:00
input_dialog_SOURCES = input-dialog.cpp
2015-05-25 23:39:09 +02:00
mandelbrot_SOURCES = mandelbrot.cpp
2015-06-08 20:42:17 +02:00
calculator_SOURCES = calculator.cpp
watch_SOURCES = watch.cpp
2015-05-23 13:35:12 +02:00
timer_SOURCES = timer.cpp
ui_SOURCES = ui.cpp
string_SOURCES = string.cpp
2015-05-23 13:35:12 +02:00