2015-05-03 21:07:50 +02:00
|
|
|
#----------------------------------------------------------------------
|
|
|
|
# Makefile.am - the Final Cut library
|
|
|
|
#----------------------------------------------------------------------
|
|
|
|
|
|
|
|
AM_LDFLAGS = -L$(top_builddir)/src/.libs -lfinal
|
|
|
|
AM_CPPFLAGS = -Wall -Werror -I$(top_srcdir)/src
|
|
|
|
|
2015-05-16 00:14:42 +02:00
|
|
|
bin_PROGRAMS = hello ui fstring timer
|
2015-05-03 21:07:50 +02:00
|
|
|
|
2015-05-16 00:14:42 +02:00
|
|
|
hello_SOURCES = hello.cpp
|
2015-05-03 21:07:50 +02:00
|
|
|
ui_SOURCES = ui.cpp
|
|
|
|
fstring_SOURCES = fstring.cpp
|
|
|
|
timer_SOURCES = timer.cpp
|
|
|
|
|
|
|
|
|