]> git.llucax.com Git - software/mutest.git/blob - sample/Makefile
Initial import
[software/mutest.git] / sample / Makefile
1
2 # Show the tests summary
3 V=-v
4
5 TARGET=tester
6
7 OBJS = factorial.o sum.o
8 TESTS = factorial_test.o sum_test.o
9 TESTER = tester.o
10 ALL = $(TESTER) $(OBJS) $(TESTS)
11
12 all: $(TARGET)
13
14 $(TARGET): $(ALL)
15
16 $(TESTER): $(OBJS) $(TESTS)
17         ../mkmutest $(TESTS) | gcc -xc -o $(TESTER) -c -
18
19 test: $(TARGET)
20         ./$(TARGET) $(V)
21
22 clean:
23         $(RM) $(TARGET) $(ALL)
24
25 .PHONY: all test clean
26