File: Makefile

package info (click to toggle)
mapnik-reference 8.10.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,588 kB
  • sloc: javascript: 521; python: 120; makefile: 17; sh: 3
file content (17 lines) | stat: -rw-r--r-- 214 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all: build

build:
	node scripts/make-datasource-ref.js

check test: build
	python3 scripts/test.py
	node scripts/lint.js
	mocha

testpack:
	rm -f ./*tgz
	npm pack
	tar -ztvf *tgz
	rm -f ./*tgz

.PHONY: test build