update makefile

This commit is contained in:
Gabriel Augendre 2024-04-03 21:50:47 +02:00
parent 605e9a58e3
commit 263f746d3a

View file

@ -1,6 +1,15 @@
.PHONY: build
build:
mkdir -p ./dist
GOARCH=amd64 GOOS=darwin go build -o ./dist/a ./a
GOARCH=amd64 GOOS=darwin go build -o ./dist/a2 ./a2
GOARCH=amd64 GOOS=darwin go build -o ./dist/b ./b
GOARCH=amd64 GOOS=darwin go build -o ./dist/control ./control
.PHONY: deptree
deptree:
mkdir -p ./deptree
depth ./a > ./deptree/a
depth ./a2 > ./deptree/a2
depth ./b > ./deptree/b
depth ./control > ./deptree/control