File: Makefile

package info (click to toggle)
golang-github-influxdata-toml 0.0~git20180607.2a2e301-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 268 kB
  • sloc: makefile: 14
file content (16 lines) | stat: -rw-r--r-- 179 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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