Update template and add baseven

This commit is contained in:
Alex D. 2021-10-31 16:45:42 +00:00
parent 8dae07111f
commit 99e83d53ce
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
3 changed files with 15 additions and 0 deletions

3
.gitmodules vendored
View File

@ -7,3 +7,6 @@
[submodule "src/radtrie"]
path = src/radtrie
url = https://git.redxen.eu/corelibs/radtrie
[submodule "src/encoding/baseven"]
path = src/encoding/baseven
url = https://git.redxen.eu/corelibs/baseven

1
src/encoding/baseven Submodule

@ -0,0 +1 @@
Subproject commit d45f9a5a0c379085d0a10573bb65055d104d41f5

View File

@ -43,6 +43,17 @@ else
CFLAGS += -O2 -Werror
endif
else ifeq (${CC},tcc)
CFLAGS =\
-Wall
ifeq (${DEBUG},1)
CFLAGS += -g
else
CFLAGS += -Werror
endif
endif
CFLAGS += ${EXTRA_CFLAGS}