From 7780e4f479dc5af106287c164b8e186cd9b6215c Mon Sep 17 00:00:00 2001 From: Stefan Sydow Date: Sun, 21 May 2023 16:03:44 +0200 Subject: [PATCH] make : .PHONY clean (#1553) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cefa0b4a5..9e2f8aa3c 100644 --- a/Makefile +++ b/Makefile @@ -245,6 +245,6 @@ benchmark-matmult: examples/benchmark/benchmark-matmult.cpp build-info.h ggml.o vdot: pocs/vdot/vdot.cpp ggml.o $(OBJS) $(CXX) $(CXXFLAGS) $^ -o $@ $(LDFLAGS) -.PHONY: tests +.PHONY: tests clean tests: bash ./tests/run-tests.sh