rand_poly initial setup

This commit is contained in:
infidel
2022-04-16 15:38:03 +07:00
parent aecf8bb070
commit b8b1eeeeea
11 changed files with 107 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
CC?=gcc
AS=$(CC) -c
AR?=ar
CFLAGS?=-g
CFLAGS+=-Wall -Wextra
SRCDIR=src
TESTDIR=tests
BINDIR=bin
test_codes = tests/test.c tests/test_util.c
bin/test:
$(CC) $(CFLAGS) -I$(SRCDIR) $(test_codes) -o $@
clean:
rm -f $(BINDIR)/*