1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
#----------------------------------------------------------------------
# Makefile.am - FINAL CUT example programs
#----------------------------------------------------------------------
LIBS = -lfinal
if ! CPPUNIT_TEST
AM_LDFLAGS = -L$(top_builddir)/final/.libs
AM_CPPFLAGS = -I$(top_srcdir)/final -Wall -Werror -std=c++14
noinst_PROGRAMS = \
7segment \
background-color \
busy \
calculator \
checklist \
choice \
dialog \
event-log \
fullwidth-character \
hello \
highlight-text \
input-dialog \
keyboard \
listbox \
listview \
mandelbrot \
menu \
mouse \
opti-move \
parallax-scrolling \
rotozoomer \
scrollview \
string-operations \
term-attributes \
termcap \
terminal-focus \
timer \
transparent \
treeview \
ui \
watch \
windows \
xpmview
7segment_SOURCES = 7segment.cpp
background_color_SOURCES = background-color.cpp
busy_SOURCES = busy.cpp
calculator_SOURCES = calculator.cpp
checklist_SOURCES = checklist.cpp
choice_SOURCES = choice.cpp
dialog_SOURCES = dialog.cpp
event_log_SOURCES = event-log.cpp
fullwidth_character_SOURCES = fullwidth-character.cpp
hello_SOURCES = hello.cpp
highlight_text_SOURCES = highlight-text.cpp
input_dialog_SOURCES = input-dialog.cpp
keyboard_SOURCES = keyboard.cpp
listbox_SOURCES = listbox.cpp
listview_SOURCES = listview.cpp
mandelbrot_SOURCES = mandelbrot.cpp
menu_SOURCES = menu.cpp
mouse_SOURCES = mouse.cpp
opti_move_SOURCES = opti-move.cpp
parallax_scrolling_SOURCES = parallax-scrolling.cpp
rotozoomer_SOURCES = rotozoomer.cpp
scrollview_SOURCES = scrollview.cpp
string_operations_SOURCES = string-operations.cpp
term_attributes_SOURCES = term-attributes.cpp
termcap_SOURCES = termcap.cpp
terminal_focus_SOURCES = terminal-focus.cpp
timer_SOURCES = timer.cpp
transparent_SOURCES = transparent.cpp
treeview_SOURCES = treeview.cpp
ui_SOURCES = ui.cpp
watch_SOURCES = watch.cpp
windows_SOURCES = windows.cpp
xpmview_SOURCES = xpmview.cpp
endif
clean-local:
-find . \( -name "*.gcda" -o -name "*.gcno" -o -name "*.gcov" \) -delete
-rm -rf .deps
|