blob: 8b89f2e1db89e1c6cac23d3a4c1f06c69675c1fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
SHELL = /bin/bash
build_and_test: docker clean build test package smoke
.PHONY: build_and_test
all: build_and_test docs
.PHONY: all
docker:
pushd docker && make
.PHONY: docker
clean: docker
./auto dev -e auto -a clean
build: clean
./auto dev -e auto -a build -a -t
.PHONY: build
test: build
./auto dev -e auto -a test
.PHONY: test
package: test
./auto dev -e auto -a package
.PHONY: smoke
smoke: package
./auto dev -e auto -a smoke
.PHONY: smoke
docs: smoke
./auto dev -e auto -a docs
.PHONY: package
|