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