shroomgit |
git clone https://git.davidvoz.net/shroomgit.git
|
| 1 | .PHONY: all shindex shgit clean |
| 2 | |
| 3 | all: shindex shgit |
| 4 | |
| 5 | shindex: |
| 6 | @mkdir -p bin |
| 7 | go build -o bin/shindex ./shindex |
| 8 | |
| 9 | shgit: |
| 10 | @mkdir -p bin |
| 11 | go build -o bin/shgit ./shgit |
| 12 | |
| 13 | clean: |
| 14 | rm -rf bin |