diff --git a/makefile b/makefile new file mode 100644 index 0000000..dca07d8 --- /dev/null +++ b/makefile @@ -0,0 +1,10 @@ +.PHONY: build clean run + +build: + @echo "Building..." + deno compile --allow-all --output ./videnc ./src/main.ts + +clean: + @echo "Cleaning..." + rm -f ./videnc + \ No newline at end of file