libcvautomation/examples/Makefile.am

11 lines
415 B
Makefile
Raw Normal View History

2012-07-19 14:19:32 -04:00
if BUILD_EXAMPLES
#Need to include the -Ilibcvautomation so that libcvautomation.h can find everything that it needs
2012-07-23 08:53:32 -04:00
AM_LDFLAGS = -L../libcvautomation/.libs -lcvautomation
2012-07-19 18:13:36 -04:00
AM_CFLAGS = -Wall -Werror -O2 -I$(top_srcdir)/include @X11_CFLAGS@ @XTEST_CFLAGS@ @CV_CFLAGS@
#Build only if we're building the examples
bin_PROGRAMS = cva-match cva-input
cva_match_SOURCES = cva-match.c
cva_input_SOURCES = cva-input.c
2012-07-19 14:19:32 -04:00
endif