yay/vendor/github.com/jguer/go-alpm/examples/Makefile

14 lines
246 B
Makefile
Raw Normal View History

2017-08-01 18:43:20 +02:00
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