summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2025-01-05 13:41:47 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2025-01-05 13:41:47 +0100
commite3ef9e53b44c245eda0da3e161cb6b95e506bed0 (patch)
tree4bfcf21027a549626c1e01238a2d89be59f93b34
parentalso fuzz deletions (diff)
downloadc-hashtable-master.tar.gz
c-hashtable-master.tar.bz2
c-hashtable-master.zip
remove makefile HEAD master
-rw-r--r--Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 7227fab..0000000
--- a/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-CC = zig cc
-CFLAGS = -Wall -g
-SRC = src/main.c src/hashtable.c
-OBJ = $(SRC:.c=.o)
-TARGET = main
-
-$(TARGET): $(OBJ)
-	$(CC) $(OBJ) -o $(TARGET)
-
-%.o: %.c
-	$(CC) $(CFLAGS) -c $< -o $@
-
-clean:
-	rm -f $(OBJ) $(TARGET)