diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-12-28 19:13:13 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-12-28 19:13:13 +0100 |
commit | 914edbb3b6549b30d5c05398626ad49362ca18ab (patch) | |
tree | d756b9967e477147fec764388bc763a469398c77 | |
parent | c5fb28bcf6d0515239ea4b626aee80d99bb41e90 (diff) |
Remove Makefile from the repo
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 5 |
2 files changed, 1 insertions, 5 deletions
@@ -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 $@ $< |