2015-05-23 13:35:12 +02:00
|
|
|
#----------------------------------------------------------------------
|
2020-07-08 21:32:47 +02:00
|
|
|
# Makefile.am - FINAL CUT example programs
|
2015-05-23 13:35:12 +02:00
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
2018-03-29 01:27:57 +02:00
|
|
|
if ! CPPUNIT_TEST
|
|
|
|
|
2015-05-23 13:35:12 +02:00
|
|
|
AM_LDFLAGS = -L$(top_builddir)/src/.libs -lfinal
|
2018-12-02 14:13:52 +01:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include -Wall -Werror -std=c++11
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
noinst_PROGRAMS = \
|
|
|
|
hello \
|
|
|
|
dialog \
|
2015-05-24 19:15:03 +02:00
|
|
|
input-dialog \
|
2020-05-13 23:47:14 +02:00
|
|
|
event-log \
|
2019-09-28 03:13:06 +02:00
|
|
|
fullwidth-character \
|
2019-02-24 20:21:12 +01:00
|
|
|
7segment \
|
2017-03-12 00:29:56 +01:00
|
|
|
choice \
|
2020-06-11 21:38:33 +02:00
|
|
|
busy \
|
2017-04-23 18:54:46 +02:00
|
|
|
listbox \
|
2017-07-18 23:50:51 +02:00
|
|
|
listview \
|
2018-11-18 01:15:38 +01:00
|
|
|
checklist \
|
2017-08-24 00:47:35 +02:00
|
|
|
treeview \
|
2016-11-26 15:18:44 +01:00
|
|
|
opti-move \
|
2017-03-26 20:40:04 +02:00
|
|
|
termcap \
|
2015-09-24 16:21:39 +02:00
|
|
|
string-operations \
|
2015-05-25 23:39:09 +02:00
|
|
|
mandelbrot \
|
2020-03-08 22:25:13 +01:00
|
|
|
rotozoomer \
|
2015-06-08 20:42:17 +02:00
|
|
|
calculator \
|
2015-07-04 23:05:28 +02:00
|
|
|
watch \
|
2015-12-24 02:37:01 +01:00
|
|
|
term-attributes \
|
2019-11-16 15:16:44 +01:00
|
|
|
background-color \
|
2016-08-21 21:27:44 +02:00
|
|
|
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 \
|
2017-01-02 08:07:46 +01:00
|
|
|
scrollview \
|
2016-07-31 20:28:45 +02:00
|
|
|
windows \
|
2015-12-08 21:05:00 +01:00
|
|
|
menu \
|
2015-09-24 16:21:39 +02:00
|
|
|
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
|
2020-05-13 23:47:14 +02:00
|
|
|
event_log_SOURCES = event-log.cpp
|
2019-09-28 03:13:06 +02:00
|
|
|
fullwidth_character_SOURCES = fullwidth-character.cpp
|
2019-02-24 20:21:12 +01:00
|
|
|
7segment_SOURCES = 7segment.cpp
|
2017-03-12 00:29:56 +01:00
|
|
|
choice_SOURCES = choice.cpp
|
2020-06-11 21:38:33 +02:00
|
|
|
busy_SOURCES = busy.cpp
|
2017-04-23 18:54:46 +02:00
|
|
|
listbox_SOURCES = listbox.cpp
|
2017-07-18 23:50:51 +02:00
|
|
|
listview_SOURCES = listview.cpp
|
2018-11-18 01:15:38 +01:00
|
|
|
checklist_SOURCES = checklist.cpp
|
2017-08-24 00:47:35 +02:00
|
|
|
treeview_SOURCES = treeview.cpp
|
2016-11-26 15:18:44 +01:00
|
|
|
opti_move_SOURCES = opti-move.cpp
|
2015-09-24 16:21:39 +02:00
|
|
|
string_operations_SOURCES = string-operations.cpp
|
2015-05-25 23:39:09 +02:00
|
|
|
mandelbrot_SOURCES = mandelbrot.cpp
|
2020-03-08 22:25:13 +01:00
|
|
|
rotozoomer_SOURCES = rotozoomer.cpp
|
2015-06-08 20:42:17 +02:00
|
|
|
calculator_SOURCES = calculator.cpp
|
2015-07-04 23:05:28 +02:00
|
|
|
watch_SOURCES = watch.cpp
|
2015-12-24 02:37:01 +01:00
|
|
|
term_attributes_SOURCES = term-attributes.cpp
|
2019-11-16 15:16:44 +01:00
|
|
|
background_color_SOURCES = background-color.cpp
|
2017-03-26 20:40:04 +02:00
|
|
|
termcap_SOURCES = termcap.cpp
|
2016-08-21 21:27:44 +02:00
|
|
|
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
|
2017-01-02 08:07:46 +01:00
|
|
|
scrollview_SOURCES = scrollview.cpp
|
2016-07-31 20:28:45 +02:00
|
|
|
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
|
2017-11-11 14:52:33 +01:00
|
|
|
|
2018-03-29 01:27:57 +02:00
|
|
|
endif
|
|
|
|
|
2017-11-11 14:52:33 +01:00
|
|
|
clean-local:
|
|
|
|
-find . \( -name "*.gcda" -o -name "*.gcno" -o -name "*.gcov" \) -delete
|