# Makefile for udev extra invoked from the udev main Makefile # # Copyright (C) 2004-2006 Kay Sievers # # 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 = install -c INSTALL_PROGRAM = ${INSTALL} INSTALL_DATA = ${INSTALL} -m 644 INSTALL_SCRIPT = ${INSTALL} 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) -d $(DESTDIR)$(libudevdir) $(INSTALL_SCRIPT) $(PROG) $(DESTDIR)$(libudevdir)/$(PROG) .PHONY: install-bin uninstall-bin: - rm $(DESTDIR)$(libudevdir)/$(PROG) .PHONY: uninstall-bin install-man: $(INSTALL) -d $(DESTDIR)$(mandir)/man8/ $(INSTALL_DATA) $(PROG).8 $(DESTDIR)$(mandir)/man8/$(PROG).8 .PHONY: install-man uninstall-man: -rm -f $(DESTDIR)$(mandir)/man8/$(PROG).8 .PHONY: uninstall-man install-config: @echo "no config file to install" .PHONY: install-config