aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index d90b8b7..6ed1ac2 100755
--- a/Makefile
+++ b/Makefile
@@ -3,10 +3,10 @@
CC=`which npx`
PLATFORM=`printf 'const os = require("os");console.log(os.platform())' | node`
ARCH=`printf 'const os = require("os");console.log(os.arch())' | node`
-TARGET="--target node18-$(PLATFORM)-$(ARCH)"
-OUTPUT="./build/ak-daemon"
-SOURCE="./api/index.js"
-CFLAGS="pkg"
+TARGET=-t node18-$(PLATFORM)-$(ARCH)
+OUTPUT=./build/ak-daemon
+SOURCE=./api/index.js
+CFLAGS=pkg
all:
$(CC) $(CFLAGS) $(TARGET) --output $(OUTPUT) $(SOURCE)