7 lines
151 B
Makefile
7 lines
151 B
Makefile
SRCS := qemu-vm qemu-vm-*
|
|
TARGET ?= /usr/local
|
|
|
|
install: $(SRCS)
|
|
install -Dm 0755 --owner=root --group=root -t $(TARGET)/bin $(SRCS)
|
|
|
|
.PHONY: install
|