1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-11-01 09:21:11 +03:00
systemd-stable/extras/path_id/Makefile

61 lines
1.2 KiB
Makefile
Raw Normal View History

2006-03-29 16:44:41 +04:00
# Makefile for udev extra invoked from the udev main Makefile
#
# Copyright (C) 2004-2006 Kay Sievers <kay.sievers@vrfy.org>
#
# Released under the GNU General Public License, version 2.
#
PROG = path_id
MAN_PAGES =
prefix =
etcdir = ${prefix}/etc
sbindir = ${prefix}/sbin
usrbindir = ${prefix}/usr/bin
usrsbindir = ${prefix}/usr/sbin
libudevdir = ${prefix}/lib/udev
mandir = ${prefix}/usr/share/man
configdir = ${etcdir}/udev/
2007-01-21 17:48:58 +03:00
INSTALL = install -c
2006-03-29 16:44:41 +04:00
INSTALL_PROGRAM = ${INSTALL}
INSTALL_DATA = ${INSTALL} -m 644
2007-01-21 17:48:58 +03:00
INSTALL_SCRIPT = ${INSTALL}
2006-03-29 16:44:41 +04:00
all: $(PROG) $(MAN_PAGES)
.PHONY: all
.DEFAULT: all
# man pages
%.8: %.xml
$(E) " XMLTO " $@
$(Q) xmlto man $?
.PRECIOUS: %.8
clean:
$(E) " CLEAN "
.PHONY: clean
install-bin: all
2008-03-15 02:02:39 +03:00
$(INSTALL) -d $(DESTDIR)$(libudevdir)
$(INSTALL_SCRIPT) $(PROG) $(DESTDIR)$(libudevdir)/$(PROG)
2006-03-29 16:44:41 +04:00
.PHONY: install-bin
uninstall-bin:
- rm $(DESTDIR)$(libudevdir)/$(PROG)
.PHONY: uninstall-bin
install-man:
2008-03-15 02:02:39 +03:00
$(INSTALL) -d $(DESTDIR)$(mandir)/man8/
$(INSTALL_DATA) $(PROG).8 $(DESTDIR)$(mandir)/man8/$(PROG).8
.PHONY: install-man
2006-03-29 16:44:41 +04:00
uninstall-man:
2007-05-13 02:06:26 +04:00
-rm -f $(DESTDIR)$(mandir)/man8/$(PROG).8
2006-03-29 16:44:41 +04:00
.PHONY: uninstall-man
install-config:
@echo "no config file to install"
.PHONY: install-config