diff options
Diffstat (limited to 'optional/Makefile')
-rw-r--r-- | optional/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/optional/Makefile b/optional/Makefile new file mode 100644 index 0000000..32e87b2 --- /dev/null +++ b/optional/Makefile @@ -0,0 +1,5 @@ +CC?=gcc +CFLAGS+=-Wall -Werror -Wno-unused -std=gnu11 -Og -g + +all: + $(CC) $(CFLAGS) -o optional-test optional-test.c |