diff options
| -rw-r--r-- | Makefile | 13 | ||||
| -rw-r--r-- | README.md | 3 |
2 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5387d1f --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ + +SRCS = $(wildcard test/*.c) +TESTS = $(SRCS:.c=) + +all: tests + +tests: $(TESTS) + +%: %.c + $(CC) -I. $< -o $@ + +clean: + rm -rf $(TESTS) @@ -1,3 +1,6 @@ # any\_libs single-file C library licensed under MIT + +**NOTE: Still in early stages of development! Use at your own risk** + |
