c538d536c8
This is part of fixing qvm-start. qmemman was moved with minimal touching, mainly module names. Moved function parsing human-readable sizes from core2. This function is wrong, because it treats k/M/G as 1024-based, but leave it for now.
15 lines
430 B
Makefile
15 lines
430 B
Makefile
UNITDIR ?= /usr/lib/systemd/system
|
|
|
|
all:
|
|
true
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)$(UNITDIR)
|
|
cp qubes-block-cleaner.service $(DESTDIR)$(UNITDIR)
|
|
cp qubes-core.service $(DESTDIR)$(UNITDIR)
|
|
cp qubes-netvm.service $(DESTDIR)$(UNITDIR)
|
|
cp qubes-vm@.service $(DESTDIR)$(UNITDIR)
|
|
cp qubes-reload-firewall@.service $(DESTDIR)$(UNITDIR)
|
|
cp qubes-reload-firewall@.timer $(DESTDIR)$(UNITDIR)
|
|
cp qubes-qmemman.service $(DESTDIR)$(UNITDIR)
|