Makefile 246 B

12345678910111213
  1. all: alpm-installed alpm-search alpm-updates
  2. alpm-installed: installed.go
  3. go build -x -o $@ $<
  4. alpm-search: search.go
  5. go build -x -o $@ $<
  6. alpm-updates: updates.go
  7. go build -x -o $@ $<
  8. clean:
  9. rm -f alpm-installed alpm-search alpm-updates