--- qemu-start/trunk/Makefile 2006/02/11 16:32:44 292 +++ qemu-start/trunk/Makefile 2006/02/11 16:36:12 293 @@ -1,3 +1,8 @@ +DESTDIR= +BINDIR=/usr/bin +MANDIR=/usr/share/man +QEMUSTARTGROUP=emulator + PACKAGE=qemu-start VERSION=1.0 FILES=AUTHORS COPYING README Makefile qemu-start.c qemu-start.1 @@ -8,10 +13,10 @@ all: qemu-start install: - install -d $(DESTDIR)/usr/bin - install -o root -g emulator -m 4710 qemu-start $(DESTDIR)/usr/bin/ - install -d $(DESTDIR)/usr/share/man/man1 - install -o root -g root -m 755 qemu-start.1 $(DESTDIR)/usr/share/man/man1 + install -d $(DESTDIR)$(BINDIR) + install -o root -g $(QEMUSTARTGROUP) -m 4710 qemu-start $(DESTDIR)$(BINDIR) + install -d $(DESTDIR)$(MANDIR)/man1 + install -o root -g root -m 755 qemu-start.1 $(DESTDIR)$(MANDIR)/man1 clean: $(RM) qemu-start