blob: e9d96acd46fb4ee4ee55f83f77c0b2d54091d857 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
if BUILD_TESTS
noinst_PROGRAMS = matrix-test
endif
AM_CFLAGS = $(GCC_CFLAGS)
AM_CPPFLAGS = -I../src
matrix_test_SOURCES = \
matrix-test.c \
../src/matrix.c \
../src/matrix.h
matrix_test_LDADD = -lm -lrt
|