From b03a370bd0d7c2628e5ac0b5b53326cd0dde3b85 Mon Sep 17 00:00:00 2001 From: kin fuyuki Date: Thu, 4 Dec 2025 18:51:33 -0300 Subject: [PATCH] now makefile is done. later tinylang will have its own header as interpreter --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e85ad25 --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +CC=clang++ +CFLAGS=-std=c++23 + +install: + mkdir -p /usr/include/tiny/ + cp inc/*.h /usr/include/tiny/ \ No newline at end of file