forked from RedisJSON/RedisJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (27 loc) · 617 Bytes
/
Makefile
File metadata and controls
37 lines (27 loc) · 617 Bytes
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
36
all:
$(MAKE) -C ./src all
test:
$(MAKE) -C ./test all
.PHONY: test
docker:
docker pull ubuntu:latest
docker pull ubuntu:xenial
docker build . -t rejson:latest
.PHONY: docker
docker_dist:
docker build --rm -f Dockerfile_Dist . -t redislabs/rejson
docker_push: docker_dist
docker push redislabs/rejson:latest
package:
$(MAKE) -C ./src package
builddocs:
mkdocs build
localdocs: builddocs
mkdocs serve
deploydocs: builddocs
mkdocs gh-deploy
clean:
find ./ -name "*.[oa]" -exec rm {} \; -print
find ./ -name "*.so" -exec rm {} \; -print
find ./ -name "*.out" -exec rm {} \; -print
rm -rf ./build