provided code

This commit is contained in:
LabTS
2024-10-01 23:37:39 +01:00
commit 8724a2641e
697 changed files with 74252 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
CLEAN_SUBDIRS = src doc tests
all::
@echo "This makefile has only 'clean' and 'check' targets."
clean::
for d in $(CLEAN_SUBDIRS); do $(MAKE) -C $$d $@; done
distclean:: clean
find . -name '*~' -exec rm '{}' \;
check::
make -C tests $@