From 500bf19ef0deb1ca80bcc4a55941326eda866d12 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sat, 11 Jan 2025 18:01:59 +0100 Subject: [PATCH 1/2] Full send --- LICENSE.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..effcea7 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,14 @@ +BSD Zero Clause License + +Copyright (c) 2025 Imbus + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. From b17d7543cf74e750b3cc4c7a8599028f54734a07 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Sat, 11 Jan 2025 18:02:10 +0100 Subject: [PATCH 2/2] Check metatarget --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 68f13be..86e1f79 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,11 @@ test: $(SUBDIRS) build $(MAKE) -j$(nproc) test -C $$dir; \ done +check: $(SUBDIRS) + @for dir in $(SUBDIRS); do \ + $(MAKE) -j$(nproc) check -C $$dir; \ + done + clean: @for dir in $(SUBDIRS); do \ make -C $$dir clean; \