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-09-24 16:21:39 +02:00
|
|
|
string-operations \
|
2015-05-25 23:39:09 +02:00
|
|
|
mandelbrot \
|
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 \
|
2015-10-29 21:10:50 +01:00
|
|
|
keyboard \
|
2015-05-23 13:35:12 +02:00
|
|
|
timer \
|
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
|
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
|
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
|
2015-10-29 21:10:50 +01:00
|
|
|
keyboard_SOURCES = keyboard.cpp
|
2015-05-23 13:35:12 +02:00
|
|
|
timer_SOURCES = timer.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
|