File: Makefile

package info (click to toggle)
golang-github-influxdata-toml 0.0~git20160905.0.ad49a5c-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 256 kB
  • sloc: makefile: 14
file content (16 lines) | stat: -rw-r--r-- 179 bytes parent folder | download | duplicates (3)
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