-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (29 loc) · 877 Bytes
/
Copy pathMakefile
File metadata and controls
36 lines (29 loc) · 877 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
.PHONY: help
help:
@echo "\nmake help starting."
@echo "Make targets are:"
@echo " make help - shows this message"
@echo " make install - Installs all the package."
@echo " make opencv - Installs Opencv-3.3."
@echo " make dependencies - Installs all the dependencies for linux."
@echo " make keras - Installs keras with tensorflow"
.PHONY: install
install: prereqs opencv dependencies keras
@echo "\nmake all install starting."
.PHONY: prereqs
prereqs:
@chmod +x install_opencv.sh
@chmod +x install_dependencies.sh
@chmod +x install_tf_keras.sh
.PHONY: opencv
opencv: prereqs
@echo "\nmake opencv install starting."
./install_opencv.sh
.PHONY: dependencies
dependencies: prereqs
@echo "\nmake linux dependencies install starting."
./install_dependencies.sh
.PHONY: keras
keras: prereqs
@echo "\nmake keras install starting."
./install_tf_keras.sh