~ruther/CTU-FEE-B0B35APO-Semestral-project

ref: 3a9ba38c24ff51f54d5f40526550f9916bc8f0ab CTU-FEE-B0B35APO-Semestral-project/Makefile -rw-r--r-- 495 bytes
3a9ba38c — František Boháček refactor: make move cursor handlers to one function 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export ROOT_DIR = $(shell pwd)
export BIN_DIR = $(ROOT_DIR)/bin

#export SSH_OPTIONS=-o "UserKnownHostsFile=/dev/null" -o "StrictHostKeyChecking=no" -o "Port=2222"
#export SSH_GDB_TUNNEL_REQUIRED=y
#export SSH_OPTIONS=-i /opt/zynq/ssh-connect/mzapo-root-key
#export SSH_OPTIONS=-o 'ProxyJump=ctu_login@postel.felk.cvut.cz'

all: image-viewer

image-viewer:
	@make -C image-viewer

copy-executables:
	@make -C image-viewer copy-executables

clean:
	@make -C image-viewer clean
	rm -rf $(BIN_DIR)