-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (28 loc) · 785 Bytes
/
Makefile
File metadata and controls
41 lines (28 loc) · 785 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
37
38
39
40
41
.PHONY: build tests-ffi
scripts_folder = scripts
debug:
@$(MAKE) -C $(scripts_folder) debug-build
@echo "[INFO]: Exit with status: $$?"
debug-non-gui:
@$(MAKE) -C $(scripts_folder) debug-non-gui
debug-gdb:
@$(MAKE) -C $(scripts_folder) debug-gdb
backend-test:
@$(MAKE) -C $(scripts_folder) backend-test
check-backend:
@$(MAKE) -C $(scripts_folder) check-backend
check-frontend:
@$(MAKE) -C $(scripts_folder) check-frontend
dev-push:
@$(MAKE) -C $(scripts_folder) dev-push
master-push:
@$(MAKE) -C $(scripts_folder) master-push
stable-push:
@$(MAKE) -C $(scripts_folder) stable-push
build_options ?= none
deploy-linux:
@$(MAKE) -C $(scripts_folder) deploy-linux build_options="$(build_options)"
tests-ffi:
@$(MAKE) -C tests-ffi tests
fmt:
@$(MAKE) -C tools fmt