From 5c56e7a600ebece678583a886dcda71b129a046e Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Mon, 6 Jan 2025 12:13:45 +0100 Subject: [PATCH] Fix libextl test invocation Co-Authored-By: Dima Kogan --- libextl/test/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libextl/test/Makefile b/libextl/test/Makefile index e7efe27b..1ee2082c 100644 --- a/libextl/test/Makefile +++ b/libextl/test/Makefile @@ -23,8 +23,9 @@ include $(TOPDIR)/build/rules.mk ###################################### +.PHONY: test test: $(SOURCES) $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(SOURCES) extltest.c $(INCLUDES) -o $@ $(LIBS) - ./extltest - # $(RM) extltest + ./$@ + # $(RM) $@