ms-runner/Makefile
Vyacheslav1557 1fa11f66e3 feat:
2024-11-01 23:22:43 +05:00

19 lines
360 B
Makefile

all:
make init
make mkrootfs
make compile
make generate
init:
git clone https://github.com/alpinelinux/alpine-make-rootfs
rm -rf starter/minrootfs
mv alpine-make-rootfs starter/alpine-make-rootfs
mkrootfs:
starter/create_rootfs.sh
gen:
buf generate
compile:
go build -o ./run
gcc starter/starter.c -o starter/starter
dev:
@make gen
@go run main.go