diff options
author | Hristo Venev <hristo@venev.name> | 2020-06-04 23:08:44 +0300 |
---|---|---|
committer | Hristo Venev <hristo@venev.name> | 2020-06-04 23:11:03 +0300 |
commit | 1bca4035abb8c75a36413340612e5531a8bbaf19 (patch) | |
tree | 1d6038bc22a6b37af955cd3225fc2f9dace3d835 /Makefile |
Initial commit.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b1ff639 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +CFLAGS = -O2 -g + +vc-log: vc-log.c + $(CC) -std=gnu11 -Wall -Wextra $(CFLAGS) $< -o $@ |