From 67dbb6421976254658c5e38045513129dd18187a Mon Sep 17 00:00:00 2001 From: lonkaars Date: Wed, 28 Jun 2023 23:59:50 +0200 Subject: initial public commit --- makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..cad47ab --- /dev/null +++ b/makefile @@ -0,0 +1,22 @@ +TARGET = yomikun + +SRCS += ./main.ts +SRCS += ./core/yomikun.ts +SRCS += ./db/db.ts +SRCS += ./language/tags.ts +SRCS += ./language/translator.ts +SRCS += ./language/types.ts +SRCS += ./util/array.ts +SRCS += ./util/error.ts +SRCS += ./util/string.ts + +DENO_FLAGS += --unstable +DENO_FLAGS += --allow-ffi +DENO_FLAGS += --allow-env +DENO_FLAGS += --allow-read +DENO_FLAGS += --allow-write +DENO_FLAGS += --allow-net + +$(TARGET): $(SRCS) + deno compile --output $@ $< $(DENO_FLAGS) + -- cgit v1.2.3