mirror of
https://github.com/bspeice/libcvautomation
synced 2025-01-08 06:51:27 -05:00
11 lines
415 B
Makefile
11 lines
415 B
Makefile
if BUILD_EXAMPLES
|
|
#Need to include the -Ilibcvautomation so that libcvautomation.h can find everything that it needs
|
|
AM_LDFLAGS = -L../libcvautomation/.libs -lcvautomation
|
|
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
|
|
endif
|