A simple cross platform capybara clicker game written with ebiten. Can be run on web!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
210 B

8 months ago
game:=capyclick
bin:=bin
all: clean
mkdir -p bin
cd src && go build && mv $(game)* ../bin
cross: clean
mkdir -p bin
cd src && GOOS=windows GOARCH=amd64 go build && mv $(game)* ../bin
clean:
rm -rf bin