Systemd/extras/path_id/Makefile

59 lines
1.1 KiB
Makefile
Raw Normal View History

2006-03-29 14:44:41 +02: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 15:48:58 +01:00
INSTALL = install -c
2006-03-29 14:44:41 +02:00
INSTALL_PROGRAM = ${INSTALL}
INSTALL_DATA = ${INSTALL} -m 644
2007-01-21 15:48:58 +01:00
INSTALL_SCRIPT = ${INSTALL}
2006-03-29 14:44:41 +02: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
2007-01-21 15:48:58 +01:00
$(INSTALL_SCRIPT) -D $(PROG) $(DESTDIR)$(libudevdir)/$(PROG)
2006-03-29 14:44:41 +02:00
.PHONY: install-bin
uninstall-bin:
- rm $(DESTDIR)$(libudevdir)/$(PROG)
.PHONY: uninstall-bin
install-man:
@echo "Please create a man page for this tool."
.PHONY: install-man
2006-03-29 14:44:41 +02:00
uninstall-man:
@echo "Please create a man page for this tool."
.PHONY: uninstall-man
install-config:
@echo "no config file to install"
.PHONY: install-config