Files
golsky/Makefile

18 lines
279 B
Makefile
Raw Normal View History

.PHONY all:
all: build
.PHONY: build
build:
make -C src
mv src/golsky .
2024-06-09 18:33:09 +02:00
.PHONY: clean
clean:
make -C src clean
rm -f dump* rect*
.PHONY: profile
profile: build
./golsky -W 1500 -H 1500 -d --profile-file cpu.profile
go tool pprof --http localhost:8888 golsky cpu.profile