Add build system and boilerplate

FossilOrigin-Name: f4f7ec59913f58beff7b54b86e3ea84fb45b1bfd6950719adef3975e71c610a5
This commit is contained in:
Jonathan Schleifer 2022-12-25 14:47:04 +00:00
parent f456a2b790
commit 6ae5b43b5a
15 changed files with 5287 additions and 0 deletions

18
Makefile Normal file
View file

@ -0,0 +1,18 @@
SUBDIRS = src tests
DISTCLEAN = aclocal.m4 \
autom4te.cache \
buildsys.mk \
config.h \
config.log \
config.status \
extra.mk
include buildsys.mk
include extra.mk
.PHONY: check
tests: src
check: tests
cd tests && ${MAKE} -s run