From 1fb2a77403f2adcbd48ac6140ad0022e2bdef080 Mon Sep 17 00:00:00 2001
From: Orestis <orestis.malaspinas@pm.me>
Date: Wed, 19 Jan 2022 07:56:05 +0100
Subject: [PATCH] cleaned makefile

---
 examples/hashmap/Makefile | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/examples/hashmap/Makefile b/examples/hashmap/Makefile
index 604c269..c85435f 100644
--- a/examples/hashmap/Makefile
+++ b/examples/hashmap/Makefile
@@ -8,17 +8,13 @@ TARGET = main
 
 all: $(TARGET) 
 
-exec_tests:
-	make -C tests/ exec_tests
-
 $(TARGET): $(OBJECTS) 
 	$(CC) $^ -o $@ $(LDFLAGS)
 
 hashmap.c: hashmap.h
 
-.PHONY = clean tests
+.PHONY = clean
 
 clean:
 	rm -f $(OBJECTS) $(TARGET) 
-	make clean -C tests
 
-- 
GitLab