aboutgitcodelistschat:MatrixIRC
path: root/tests/unit/Makefile
blob: a61f34c627b857e9cc1a17cc14923f13382d8bb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CFLAGS += -lcheck

test: test-filter test-actions
test-filter: test-filter.c
	$(CC) $(CFLAGS) -o test-filter ../../filter.c ../../disasm.c test-filter.c
	./test-filter

test-action-call: test_action_call.c ../../actions.c ../../actions.h
	$(CC) $(CFLAGS) -o test-action-call ../../actions.c test_action_call.c
	./test-action-call

test-actions: test_actions.c ../../actions.c ../../actions.h ../../common.h
	$(CC) $(CFLAGS) -o test-actions \
		../../common.c ../../actions.c \
		test_actions.c
	./test-actions