-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
120 lines (103 loc) · 4.59 KB
/
Makefile
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#directory stuffs
SHELL = /bin/bash
TOP := $(shell pwd)
PYTHON=python3.6
#project stuffs
MAIN_PRJ ?= hello
PRJ_DIR ?= $(TOP)/upload
#board stuffs
BRD_IP?=192.168.2.99
BRD_DIR?=/home/xilinx/file
BRD_USR?=xilinx
.PHONY: all clean
help:
@echo "*****************************************************************"
@echo "*****************************************************************"
@echo "*****************************************************************"
@echo " FPGA actions template makefile helper "
@echo "*****************************************************************"
@echo "*****************************************************************"
@echo "*****************************************************************"
@echo ""
@echo " [HELP] 'make' shows this helper"
@echo ""
@echo "*****************************************************************"
@echo ""
@echo " [INFO] 'make all' clone and run files"
@echo ""
@echo "*****************************************************************"
@echo ""
@echo " default configuration: micro-usb addr 'BRD_IP?=$(BRD_IP)'"
@echo " default target directory on the board 'BRD_DIR?=$(BRD_DIR)'"
@echo ""
@echo "*****************************************************************"
@echo ""
@echo " Clone files "
@echo ""
@echo "*****************************************************************"
@echo ""
@echo "[INFO] 'make copy_py' clone python file in the 'file' folder"
@echo "[INFO] 'make copy_bit' clone python file in the 'file' folder"
@echo "[INFO] 'make copy' clone all files in the 'file' folder"
@echo ""
@echo "*****************************************************************"
@echo ""
@echo " Clean utilities "
@echo ""
@echo "*****************************************************************"
@echo ""
@echo "[INFO] 'make clean' cleans everything in the folder on board"
@echo ""
@echo "*****************************************************************"
@echo "*****************************************************************"
@echo "*****************************************************************"
@echo ""
@echo " End of FPGA actions template makefile helper "
@echo ""
@echo "*****************************************************************"
@echo "*****************************************************************"
@echo "*****************************************************************"
@make helparam
############################################################################################################
############################################### COPY #######################################################
############################################################################################################
copy_py:
rsync -avz $(PRJ_DIR)/$(MAIN_PRJ).py $(BRD_USR)@$(BRD_IP):$(BRD_DIR)
copy_bit:
rsync -avz $(PRJ_DIR)/$(MAIN_PRJ).bit $(BRD_USR)@$(BRD_IP):$(BRD_DIR)
copy: copy_py copy_bit
############################################################################################################
################################################ RUN #######################################################
############################################################################################################
run_py:
ssh $(BRD_USR)@$(BRD_IP) '$(PYTHON) $(BRD_DIR)/$(MAIN_PRJ).py'
run_bit:
ssh $(BRD_USR)@$(BRD_IP) '$(BRD_DIR)/$(MAIN_PRJ).bit'
#return:
##################
#####TO DO########
##################
all: copy run_py
############################################################################################################
############################################### CLEAN ######################################################
############################################################################################################
clean:
ssh $(BRD_USR)@$(BRD_IP) 'rm $(BRD_DIR)/*.py'
ssh $(BRD_USR)@$(BRD_IP) 'rm $(BRD_DIR)/*.bit'
helparam:
@echo ""
@echo "*****************************************************************"
@echo ""
@echo " Makefile parameters helpers "
@echo ""
@echo "*****************************************************************"
@echo ""
@echo " [INFO] using shell=$(SHELL), top directory=$(TOP)"
@echo " [INFO] py version=$(PYTHON)"
@echo ""
@echo "*****************************************************************"
@echo ""
@echo " END of Makefile parameters helper "
@echo ""
@echo "*****************************************************************"
@echo ""