13 lines
322 B
Makefile
13 lines
322 B
Makefile
|
lib_LIBRARIES = libclosure.a
|
||
|
|
||
|
libclosure_a_SOURCES = src/closure.c src/closure.h
|
||
|
|
||
|
noinst_PROGRAMS = tests/test
|
||
|
tests_test_SOURCES = tests/test.c src/closure.h
|
||
|
tests_test_LDADD = libclosure.a
|
||
|
tests_test_CFLAGS = -Isrc
|
||
|
|
||
|
TESTS = tests/test
|
||
|
TESTS_ENVIRONMENT= $(srcdir)/tests/run-test
|
||
|
EXTRA_DIST= tests/run-test tests/test.ok
|