Makefile 88 B

1234
  1. all:
  2. for item in src/*.go; do go build -o build/ $${item} ; done
  3. clean:
  4. rm -f build/*