From 10bb8a05088f1d3bb24f7167f609b5f6fb0ba026 Mon Sep 17 00:00:00 2001 From: Johnny Richard Date: Wed, 30 Oct 2024 22:58:03 +0100 Subject: bootstrap project Signed-off-by: Johnny Richard --- tests/Makefile.am | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/Makefile.am (limited to 'tests/Makefile.am') diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 0000000..23baae3 --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1,12 @@ +AM_CPPFLAGS = -I$(top_srcdir)/include + +TESTS = arena_test array_test +check_PROGRAMS = arena_test array_test + +arena_test_SOURCES = obe_arena_test.c $(top_srcdir)/src/arena.c +arena_test_CFLAGS = @CHECK_CFLAGS@ +arena_test_LDADD = @CHECK_LIBS@ + +array_test_SOURCES = obe_array_test.c $(top_srcdir)/src/arena.c $(top_srcdir)/src/array.c +array_test_CFLAGS = @CHECK_CFLAGS@ +array_test_LDADD = @CHECK_LIBS@ -- cgit v1.2.3