blob: d90b8b78c8f414554c5b647d6dea5eca042c6f46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
##
# Compiles the API into `./build/ak-daemon`
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"
all:
$(CC) $(CFLAGS) $(TARGET) --output $(OUTPUT) $(SOURCE)
|