aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2023-12-28 19:13:13 +0100
committerThomas Voss <mail@thomasvoss.com> 2023-12-28 19:13:13 +0100
commit914edbb3b6549b30d5c05398626ad49362ca18ab (patch)
treed756b9967e477147fec764388bc763a469398c77
parentc5fb28bcf6d0515239ea4b626aee80d99bb41e90 (diff)
Remove Makefile from the repo
-rw-r--r--.gitignore1
-rw-r--r--Makefile5
2 files changed, 1 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index bf08bd5..cb838ed 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,5 @@
*.c
compile_commands.json
main
+Makefile
test
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 7296653..0000000
--- a/Makefile
+++ /dev/null
@@ -1,5 +0,0 @@
-CC = cc
-CFLAGS = -Wall -Wextra -Wpedantic
-
-main: main.c cbs.h
- $(CC) $(CFLAGS) -o $@ $<