aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
blob: d7b6957c865f64407471c52980b6d320122f932d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
.PHONY: clean

all: rspamd_test_suite

rspamd_test_suite: $(OBJECTS) ../url.o ../util.o
	$(CC) $(PTHREAD_LDFLAGS) $(LDFLAGS) $(OBJECTS) ../url.o ../util.o $(LIBS) -o rspamd_test_suite

run_test: rspamd_test_suite
	gtester --verbose -k -o=rspamd_test.xml ./rspamd_test_suite
	less rspamd_test.xml && rm -f rspamd_test.xml

clean:
	rm -f *.o rspamd_test_suite *.core rspamd_test.xml