finalcut/examples/Makefile.am

54 lines
1.3 KiB
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 \
2017-03-12 00:29:56 +01:00
choice \
listbox \
listview \
treeview \
2016-11-26 15:18:44 +01:00
opti-move \
2017-03-26 20:40:04 +02:00
termcap \
string-operations \
2015-05-25 23:39:09 +02:00
mandelbrot \
2015-06-08 20:42:17 +02:00
calculator \
watch \
term-attributes \
transparent \
2015-10-29 21:10:50 +01:00
keyboard \
2017-03-17 22:59:06 +01:00
mouse \
2015-05-23 13:35:12 +02:00
timer \
scrollview \
windows \
2015-12-08 21:05:00 +01:00
menu \
ui
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
2017-03-12 00:29:56 +01:00
choice_SOURCES = choice.cpp
listbox_SOURCES = listbox.cpp
listview_SOURCES = listview.cpp
treeview_SOURCES = treeview.cpp
2016-11-26 15:18:44 +01:00
opti_move_SOURCES = opti-move.cpp
string_operations_SOURCES = string-operations.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
term_attributes_SOURCES = term-attributes.cpp
2017-03-26 20:40:04 +02:00
termcap_SOURCES = termcap.cpp
transparent_SOURCES = transparent.cpp
2015-10-29 21:10:50 +01:00
keyboard_SOURCES = keyboard.cpp
2017-03-17 22:59:06 +01:00
mouse_SOURCES = mouse.cpp
2015-05-23 13:35:12 +02:00
timer_SOURCES = timer.cpp
scrollview_SOURCES = scrollview.cpp
windows_SOURCES = windows.cpp
2015-12-08 21:05:00 +01:00
menu_SOURCES = menu.cpp
2015-05-23 13:35:12 +02:00
ui_SOURCES = ui.cpp