diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-12-28 14:01:34 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-12-28 14:01:34 +0100 |
commit | 94615b013bd6158862e85318ab8e3bb7cb77a659 (patch) | |
tree | 3b479f893d8da77a38e3c3d3aed6fbb5e8518c33 /Makefile |
Genesis commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7296653 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +CC = cc +CFLAGS = -Wall -Wextra -Wpedantic + +main: main.c cbs.h + $(CC) $(CFLAGS) -o $@ $< |