File: Makefile

package info (click to toggle)
node-opencv 7.0.0%2Bgit20200316.f0a03a4b-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 23,100 kB
  • sloc: xml: 476,274; cpp: 6,042; javascript: 2,304; makefile: 56; sh: 25; ansic: 20
file content (16 lines) | stat: -rw-r--r-- 409 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
VERSION := $(shell node -e "console.log(require('./package.json').version)")

test:
	npm test
.PHONY: test

smoke:
	npm install --build-from-source
	node smoke/smoketest.js
	npm test
.PHONY: smoke

travis-build:
	docker build -t peterbraden/node-opencv-ubuntu-12-04 -f test/Dockerfile-ubuntu-12-04 .
	docker build -t peterbraden/node-opencv-ubuntu-14-04 -f test/Dockerfile-ubuntu-14-04 .
.PHONY: travis-build