mirror of
https://github.com/celogeek/imgcat.git
synced 2025-05-24 07:52:35 +02:00
12 lines
231 B
Makefile
12 lines
231 B
Makefile
.DEFAULT_GOAL := all
|
|
|
|
imgcat: main.go
|
|
go build -o $@
|
|
|
|
build: imgcat
|
|
|
|
all: build test
|
|
|
|
test:
|
|
./imgcat -u "https://images.pexels.com/photos/2558605/pexels-photo-2558605.jpeg?cs=srgb&dl=pexels-anel-rossouw-2558605.jpg&fm=jpg" -r 25
|