X-Git-Url: https://git.llucax.com/software/mutest.git/blobdiff_plain/78b63d329c2e3bb185c0b78119ccb5fc5c0781b9..d5be024b1cc1a456cd9726d85a7e108e1818ae7f:/sample/Makefile diff --git a/sample/Makefile b/sample/Makefile index d352654..3c1588c 100644 --- a/sample/Makefile +++ b/sample/Makefile @@ -1,36 +1,59 @@ +# +# This file is part of mutest, a simple micro unit testing framework for C. +# +# mutest was written by Leandro Lucarella and is released +# under the BOLA license, please see the LICENSE file or visit: +# http://blitiri.com.ar/p/bola/ +# +# This is the samples Makefile. +# +# Please, read the README file for more details. +# # Show the tests summary V=-v -TARGET=tester +CFLAGS = -Wall -std=c89 + +TARGET = tester +RUNNER_SRC = test_suite_runner.c +MKMUTEST = ../mkmutest +MUTEST = ../py/mutest +MUTEST_H = ../mutest.h +MUTEST_C = ../mutest.c OBJS = factorial.o sum.o -TESTS = factorial_test.o sum_test.o -TESTER = tester.o -SO = factorial.so sum.so -ALL = $(TESTER) $(OBJS) $(TESTS) +TEST_OBJS = factorial_test.o sum_test.o init_fail_test.o +MUTEST_OBJ = mutest.o +RUNNER_OBJ = $(RUNNER_SRC:.c=.o) +ALL_OBJS = $(RUNNER_OBJ) $(OBJS) $(TEST_OBJS) $(MUTEST_OBJ) +TEST_SOS = $(TEST_OBJS:.o=.so) all: $(TARGET) -py: $(SO) +py: $(TEST_SOS) + +$(TARGET): $(ALL_OBJS) + $(CC) $(LDFLAGS) -o $@ $^ -$(TARGET): $(ALL) +$(RUNNER_SRC): $(MKMUTEST_OBJ) $(MUTEST_H) $(TEST_OBJS) + $(MKMUTEST) $(MUTEST_H) $(TEST_OBJS) > $@ -$(TESTER): $(OBJS) $(TESTS) - ../mkmutest $(TESTS) | gcc -xc -o $(TESTER) -c - +factorial_test.so: factorial.c -factorial.so: factorial_test.c +sum_test.so: sum.c -sum.so: sum_test.c +$(MUTEST_OBJ): $(MUTEST_C) + $(CC) $(CFLAGS) -c -o $@ $^ test: $(TARGET) ./$(TARGET) $(V) -test-py: $(SO) - ../py/mutest $(V) -a +test-py: $(TEST_SOS) + $(MUTEST) $(V) -a clean: - $(RM) $(TARGET) $(SO) $(ALL) + $(RM) $(TARGET) $(TEST_SOS) $(ALL_OBJS) $(RUNNER_SRC) .c.so: $(CC) $(CFLAGS) $(LDFLAGS) -DMUTEST_PY -fPIC -shared -o $@ $^