chiark / gitweb /
remove all stripping code
[elogind.git] / extras / run_directory / Makefile
index 14b4725daefb53e091c981a98b2988aa274bf4f9..7ad6c547b810c7794e55f0e96ab63bff42b4b315 100644 (file)
@@ -1,53 +1,70 @@
-# Makefile for run_directory
+# Makefile for udev extra invoked from the udev main Makefile
 #
-# Copyright (C) 2005 Kay Sievers <kay.sievers@vrfy.org>
+# Copyright (C) 2004-2005 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.
 #
-
-DEVD = udev_run_devd
-HOTPLUGD = udev_run_hotplugd
-
-all:   $(DEVD) $(HOTPLUGD)
+PROG = udev_run_devd udev_run_hotplugd
+OBJS = run_directory.o
+HEADERS =
+GEN_HEADERS =
+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_PROGRAM = ${INSTALL}
 INSTALL_DATA  = ${INSTALL} -m 644
 INSTALL_SCRIPT = ${INSTALL_PROGRAM}
 
-OBJS = ../../udev.a ../../libsysfs/sysfs.a
+all: $(PROG) $(MAN_PAGES)
+.PHONY: all
+.DEFAULT: all
 
-.c.o:
-       $(QUIET) $(CC) $(CFLAGS) -c -o $@ $<
+%.o: %.c $(GEN_HEADERS)
+       $(E) "  CC      " $@
+       $(Q) $(CC) -c $(CFLAGS) $< -o $@
 
-$(DEVD): $(HEADERS) $(DEVD).o run_directory.o
-       $(QUIET) $(LD) $(LDFLAGS) -o $(DEVD) $(DEVD).o run_directory.o $(OBJS)
+$(PROG): %: $(HEADERS) %.o $(OBJS)
+       $(E) "  LD      " $@
+       $(Q) $(LD) $(LDFLAGS) $@.o $(OBJS) -o $@ $(LIBUDEV) $(LIB_OBJS)
 
-$(HOTPLUGD): $(HEADERS) $(HOTPLUGD).o run_directory.o
-       $(QUIET) $(LD) $(LDFLAGS) -o $(HOTPLUGD) $(HOTPLUGD).o run_directory.o $(OBJS)
+# man pages
+%.8: %.xml
+       $(E) "  XMLTO   " $@
+       $(Q) xmlto man $?
+.PRECIOUS: %.8
 
 clean:
-       rm -f $(DEVD) $(HOTPLUGD) run_directory.o
+       $(E) "  CLEAN   "
+       $(Q) rm -f $(PROG) $(OBJS) $(GEN_HEADERS)
+.PHONY: clean
+
+install-bin: all
+       $(INSTALL_PROGRAM) -D udev_run_devd $(DESTDIR)$(libudevdir)/udev_run_devd
+       $(INSTALL_PROGRAM) -D udev_run_hotplugd $(DESTDIR)$(libudevdir)/udev_run_hotplugd
+.PHONY: install-bin
+
+uninstall-bin:
+       - rm $(DESTDIR)$(libudevdir)/udev_run_devd
+       - rm $(DESTDIR)$(libudevdir)/udev_run_hotplugd
+.PHONY: uninstall-bin
 
-spotless: clean
+install-man:
+       @echo "Please create a man page for this tool."
+.PHONY: uninstall-man
 
-install: all
-       $(INSTALL_PROGRAM) $(DEVD) $(DESTDIR)$(sbindir)/$(DEVD)
-       $(INSTALL_PROGRAM) $(HOTPLUGD) $(DESTDIR)$(sbindir)/$(HOTPLUGD)
+uninstall-man:
+       @echo "Please create a man page for this tool."
+.PHONY: uninstall-man
 
-uninstall:
-       - rm $(DESTDIR)$(sbindir)/$(DEVD)
+install-config:
+       @echo "no config file to install"
+.PHONY: install-config