mirror of
https://github.com/Jguer/yay.git
synced 2024-11-07 09:37:22 +01:00
14 lines
246 B
Makefile
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
|