qemu-vm/Makefile
2024-05-13 19:14:45 +02:00

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