diff options
author | Kay Sievers <kay.sievers@suse.de> | 2006-03-29 14:44:41 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@suse.de> | 2006-03-29 14:44:41 +0200 |
commit | 4809b49e4100e35b0dfb5d93cf501e020366de0b (patch) | |
tree | c9d119c89e740f20bf87eac41634ca7c5f7e6618 /extras/path_id | |
parent | 7f1ba7b03f388c1d3d03b0f66a1c0ced7707ac11 (diff) |
move all *_id programs to /lib/udev/
Diffstat (limited to 'extras/path_id')
-rw-r--r-- | extras/path_id/Makefile | 58 | ||||
-rwxr-xr-x | extras/path_id/path_id (renamed from extras/path_id) | 0 |
2 files changed, 58 insertions, 0 deletions
diff --git a/extras/path_id/Makefile b/extras/path_id/Makefile new file mode 100644 index 0000000000..32747a71d1 --- /dev/null +++ b/extras/path_id/Makefile @@ -0,0 +1,58 @@ +# 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/ + +INSTALL = /usr/bin/install -c +INSTALL_PROGRAM = ${INSTALL} +INSTALL_DATA = ${INSTALL} -m 644 +INSTALL_SCRIPT = ${INSTALL_PROGRAM} + +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 + $(INSTALL_PROGRAM) -D $(PROG) $(DESTDIR)$(libudevdir)/$(PROG) +.PHONY: install-bin + +uninstall-bin: + - rm $(DESTDIR)$(libudevdir)/$(PROG) +.PHONY: uninstall-bin + +install-man: + @echo "Please create a man page for this tool." +.PHONY: uninstall-man + +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 + diff --git a/extras/path_id b/extras/path_id/path_id index 0274be391a..0274be391a 100755 --- a/extras/path_id +++ b/extras/path_id/path_id |