File: Makefile

package info (click to toggle)
zkg 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,740 kB
  • sloc: python: 5,910; sh: 268; makefile: 265; cpp: 24
file content (15 lines) | stat: -rw-r--r-- 392 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: all
all: btest-installation-check
	@btest -j -f diag.log

.PHONY: btest-installation-check
btest-installation-check:
	@type btest > /dev/null 2>&1 || \
		{ \
		echo "btest was not located in PATH."; \
		echo "Install it and/or make sure it is in PATH."; \
		echo "E.g. you could use the following command to install it:"; \
		echo "\tpip3 install btest"; \
		echo ; \
		exit 1; \
		}