yay/vendor/github.com/jguer/go-alpm/examples/Makefile
Jguer 1232854fd4 Update vendor dependencies
Signed-off-by: Jguer <me@jguer.space>
2018-03-11 21:27:55 +00:00

14 lines
246 B
Makefile

all: alpm-installed alpm-search alpm-updates
alpm-installed: installed.go
go build -x -o $@ $<
alpm-search: search.go
go build -x -o $@ $<
alpm-updates: updates.go
go build -x -o $@ $<
clean:
rm -f alpm-installed alpm-search alpm-updates