~dricottone/my-utils

ref: 4d76920fa980792cde032d62c24bc88f8cf689c0 my-utils/emulation/Makefile -rw-r--r-- 456 bytes
4d76920fDominic Ricottone Effectively no change 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
BIN_DIR?=/usr/local/bin
LIB_DIR?=/usr/local/lib
COMP_DIR?=/usr/local/etc/bash_completion.d

.PHONY: install uninstall test clean

install:
	install -m755 android-emulator $(BIN_DIR)/android-emulator
	install -m755 qemu-test $(BIN_DIR)/qemu-test

uninstall:
	rm $(BIN_DIR)/android-emulator
	rm $(BIN_DIR)/qemu-test

test: clean
	#shellcheck *.bash *.sh $(LIB_DIR)/mylib.bash $(LIB_DIR)/myparse.bash $(LIB_DIR)/myminiparse.sh
	sh test_qemu-test.sh

clean: