blob: 6ed1ac2519fbd4e824c4590fe7892f9e6580358e (
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=-t node18-$(PLATFORM)-$(ARCH)
OUTPUT=./build/ak-daemon
SOURCE=./api/index.js
CFLAGS=pkg
all:
$(CC) $(CFLAGS) $(TARGET) --output $(OUTPUT) $(SOURCE)
|