summaryrefslogtreecommitdiff
path: root/Makefile
blob: 942de72b7a2ff48059efb1c098a37c7bf1709984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
BUILD=go build


SOURCES=scorsh.go \
types.go \
config.go \
spooler.go \
commits.go \
workers.go

all: scorsh


scorsh: $(SOURCES) 
	$(BUILD) scorsh.go types.go config.go spooler.go commits.go workers.go

clean:
	rm scorsh