mirror of https://github.com/subgraph/fw-daemon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
179 B
17 lines
179 B
8 years ago
|
GO = go
|
||
|
PEG = peg
|
||
|
|
||
|
.SUFFIXES: .peg .peg.go
|
||
|
|
||
|
.PHONY: all test clean
|
||
|
all: parse.peg.go
|
||
|
|
||
|
.peg.peg.go:
|
||
|
$(PEG) -switch -inline $<
|
||
|
|
||
|
test: all
|
||
|
$(GO) test ./...
|
||
|
|
||
|
clean:
|
||
|
$(RM) *.peg.go
|