chiark / gitweb /
rules_generator: remove executable flag from include file
[elogind.git] / extras / firmware / Makefile
index 5632e0dee52ea60a3cce7c62933eada3da3dc255..c187b47635fde89473513c47b5873b8e7269d198 100644 (file)
@@ -1,51 +1,58 @@
-# Makefile for firmware_helper
+# Makefile for udev extra invoked from the udev main Makefile
 #
-# Copyright (C) 2005 Kay Sievers <kay.sievers@vrfy.org>
+# Copyright (C) 2004-2006 Kay Sievers <kay.sievers@vrfy.org>
 #
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
+# Released under the GNU General Public License, version 2.
 #
 
-PROG = firmware_helper
-
-all:   $(PROG)
+PROG = firmware.sh
+MAN_PAGES =
 
 prefix =
-exec_prefix =  ${prefix}
 etcdir =       ${prefix}/etc
-sbindir =      ${exec_prefix}/sbin
-usrbindir =    ${exec_prefix}/usr/bin
-usrsbindir =   ${exec_prefix}/usr/sbin
+sbindir =      ${prefix}/sbin
+usrbindir =    ${prefix}/usr/bin
+usrsbindir =   ${prefix}/usr/sbin
+libudevdir =   ${prefix}/lib/udev
 mandir =       ${prefix}/usr/share/man
-devddir =      ${etcdir}/dev.d/default
 configdir =    ${etcdir}/udev/
-initdir =      ${etcdir}/init.d/
-srcdir = .
 
-INSTALL = /usr/bin/install -c
+INSTALL = install -c
 INSTALL_PROGRAM = ${INSTALL}
 INSTALL_DATA  = ${INSTALL} -m 644
-INSTALL_SCRIPT = ${INSTALL_PROGRAM}
-
-OBJS = $(PROG).o $(LIBUDEV) $(LIBSYSFS)
-HEADERS =
+INSTALL_SCRIPT = ${INSTALL}
 
-$(OBJS): $(HEADERS)
+all: $(PROG) $(MAN_PAGES)
+.PHONY: all
+.DEFAULT: all
 
-.c.o:
-       $(QUIET) $(CC) $(CFLAGS) -c -o $@ $<
-
-$(PROG): $(OBJS) $(HEADERS)
-       $(QUIET) $(LD) $(LDFLAGS) -o $(PROG) $(OBJS) $(LIB_OBJS)
+# man pages
+%.8: %.xml
+       $(E) "  XMLTO   " $@
+       $(Q) xmlto man $?
+.PRECIOUS: %.8
 
 clean:
-       rm -f $(PROG) $(OBJS)
-
-spotless: clean
+       $(E) "  CLEAN   "
+.PHONY: clean
 
 install-bin: all
-       $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(sbindir)/$(PROG)
+       $(INSTALL_SCRIPT) -D $(PROG) $(DESTDIR)$(libudevdir)/$(PROG)
+.PHONY: install-bin
 
 uninstall-bin:
-       - rm $(DESTDIR)$(sbindir)/$(PROG)
+       - rm $(DESTDIR)$(libudevdir)/$(PROG)
+.PHONY: uninstall-bin
+
+install-man:
+       @echo "Please create a man page for this tool."
+.PHONY: install-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
+