-
Notifications
You must be signed in to change notification settings - Fork 0
/
clib.mk
20 lines (17 loc) · 1.04 KB
/
clib.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
NAME := phbase
INTERFACE := include
SOURCES := src/core.c \
src/allocator.c \
src/dynarray.c \
src/ptrdex.c \
src/test.c \
src/utf8.c
TEST_SOURCES := bins/test.c \
test/arena.c \
test/core.c \
test/dynarray.c \
test/extrusion.c \
test/ptrdex.c \
test/utf8.c \
test/bitarray.c
EXTRA_CFLAGS := -std=c11