1include $(top_srcdir)/tests.mk
2
3common_ldadd = \
4	$(GLIB_LIBS)
5
6AM_CPPFLAGS = \
7	$(GLIB_CFLAGS) \
8	-I$(top_srcdir)/src \
9	-I$(top_srcdir)/src/common
10
11TEST_PROGS += entity_test
12entity_test_SOURCES = entity_test.c
13entity_test_LDADD = $(common_ldadd) ../entity.o
14
15noinst_PROGRAMS = $(TEST_PROGS)
16
17.PHONY: test
18