Compare commits
2 commits
eb41bede5e
...
b17d7543cf
Author | SHA1 | Date | |
---|---|---|---|
|
b17d7543cf | ||
|
500bf19ef0 |
2 changed files with 19 additions and 0 deletions
14
LICENSE.txt
Normal file
14
LICENSE.txt
Normal file
|
@ -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.
|
5
Makefile
5
Makefile
|
@ -12,6 +12,11 @@ test: $(SUBDIRS) build
|
||||||
$(MAKE) -j$(nproc) test -C $$dir; \
|
$(MAKE) -j$(nproc) test -C $$dir; \
|
||||||
done
|
done
|
||||||
|
|
||||||
|
check: $(SUBDIRS)
|
||||||
|
@for dir in $(SUBDIRS); do \
|
||||||
|
$(MAKE) -j$(nproc) check -C $$dir; \
|
||||||
|
done
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@for dir in $(SUBDIRS); do \
|
@for dir in $(SUBDIRS); do \
|
||||||
make -C $$dir clean; \
|
make -C $$dir clean; \
|
||||||
|
|
Loading…
Reference in a new issue