wallhaven_dl/Makefile
2023-10-17 11:33:29 -07:00

20 lines
239 B
Makefile

build: wallhaven_dl
wallhaven_dl: $(shell find . -name '*.go')
go build -o wallhaven_dl .
run:
go run main.go
tidy:
go mod tidy
clean:
rm -f wallhaven_dl
uninstall:
rm -f /usr/bin/wallhaven_dl
install:
cp wallhaven_dl /usr/bin