summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSadeep Madurange <sadeep@asciimx.com>2026-04-04 11:55:08 +0800
committerSadeep Madurange <sadeep@asciimx.com>2026-04-04 14:52:02 +0800
commitcf421aeff4faa15a2a80495345ae76023830ca86 (patch)
treed417dd85f75fc4c532bb0954ed59bea87d350914 /Makefile
parent3af329abee56900dd42cb305bd7a431ab3ded90a (diff)
downloadcvn-cf421aeff4faa15a2a80495345ae76023830ca86.tar.gz
Unit tests and fix hash collisions, deletions.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 9104cae..0000000
--- a/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-CC = cc
-TARGET = cvn
-
-SRC = main.c
-OBJ = $(SRC:.c=.o)
-
-CFLAGS = -std=c99 -O3 -Wall -I/usr/local/include
-LDFLAGS = -L/usr/local/lib
-
-all: $(TARGET)
-
-%.o: %.c
- $(CC) $(CFLAGS) -c $< -o $@
-
-$(TARGET): $(OBJ)
- $(CC) $(OBJ) -o $(TARGET) $(LDFLAGS)
-
-.PHONY: clean
-
-clean:
- rm -f $(OBJ) $(TARGET)