rsys

Basic data structures and low-level features
git clone git://git.meso-star.fr/rsys.git
Log | Files | Refs | README | LICENSE

commit e9853343a8f1162469fef1f646919458a7fa41f3
parent 4435cba93937916655eb87098c7b59b8130fad27
Author: vaplv <vaplv@free.fr>
Date:   Wed, 15 Jun 2022 18:38:08 +0200

Minor update of the Makefile

Diffstat:
MMakefile | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile @@ -203,6 +203,10 @@ test: build_tests test_run: test_bin @$(SHELL) make.sh run_test $(TEST_SRC) +clean_test: + @rm -f libtest_lib.so test_lib.o .test .test.ppm test_text_reader.txt test.ppm + @$(SHELL) make.sh clean_test $(TEST_SRC) + src/test_algorithm.o \ src/test_atomic.o \ src/test_binary_heap.o \ @@ -313,10 +317,6 @@ test_lib.o: src/test_library.c src/rsys.h libtest_lib.so: test_lib.o $(CC) $(CFLAGS) -shared -o $@ test_lib.o -clean_test: - @rm -f libtest_lib.so test_lib.o .test .test.ppm test_text_reader.txt test.ppm - @$(SHELL) make.sh clean_test $(TEST_SRC) - test_library: libtest_lib.so ################################################################################