From 64dcbdb52615f269ec2631710520989550512883 Mon Sep 17 00:00:00 2001 From: Nick Chambers Date: Wed, 29 Jun 2022 02:13:23 -0500 Subject: [PATCH] Rename test runner --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e38cadb..0671f54 100644 --- a/Makefile +++ b/Makefile @@ -28,11 +28,11 @@ bin/%.o: src/%.c | init docs: @printf "not implemented yet.\n" >&2 -test: bin/libgargoyle.so bin/gargoyle +test: bin/libgargoyle.so bin/gargoyle-test + bin/gargoyle-test -bin/gargoyle: $(addprefix bin/test/,$(addsuffix .o,$(GARGOYLE_TEST_OBJS))) +bin/gargoyle-test: $(addprefix bin/test/,$(addsuffix .o,$(GARGOYLE_TEST_OBJS))) cc $(LDFLAGS) -L bin -o $@ $^ -l gargoyle -l cunit - bin/gargoyle bin/test/%.o: test/%.c | init cc $(CFLAGS) -std=c99 -I include -c -o $@ $<