11 lines
119 B
Makefile
11 lines
119 B
Makefile
all: build
|
|
|
|
build:
|
|
go build
|
|
|
|
install: build
|
|
cp gamboupload /home/evan/.local/bin/gamboupload
|
|
|
|
clean:
|
|
rm gamboupload
|