summaryrefslogtreecommitdiff
path: root/extras/run_directory/Makefile
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2005-09-14 17:00:02 +0200
committerKay Sievers <kay.sievers@suse.de>2005-09-14 17:00:02 +0200
commitdb28d2ea4f95aee82ec3619546546eb1506be46a (patch)
treeb3793624318fb20205817ecfd3477013e9f99897 /extras/run_directory/Makefile
parent726b21604aa5132090a6be1068da7f58069849ab (diff)
EXTRAS: cleanup and sync all Makefiles
Signed-off-by: Kay Sievers <kay.sievers@suse.de>
Diffstat (limited to 'extras/run_directory/Makefile')
-rw-r--r--extras/run_directory/Makefile65
1 files changed, 40 insertions, 25 deletions
diff --git a/extras/run_directory/Makefile b/extras/run_directory/Makefile
index 38ef7b128e..8444c3ba63 100644
--- a/extras/run_directory/Makefile
+++ b/extras/run_directory/Makefile
@@ -1,16 +1,14 @@
-# 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}
@@ -19,9 +17,7 @@ sbindir = ${exec_prefix}/sbin
usrbindir = ${exec_prefix}/usr/bin
usrsbindir = ${exec_prefix}/usr/sbin
mandir = ${prefix}/usr/share/man
-devddir = ${etcdir}/dev.d/default
configdir = ${etcdir}/udev/
-initdir = ${etcdir}/init.d/
srcdir = .
INSTALL = /usr/bin/install -c
@@ -29,25 +25,44 @@ INSTALL_PROGRAM = ${INSTALL}
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_SCRIPT = ${INSTALL_PROGRAM}
-OBJS = $(LIBUDEV)
+all: $(PROG) $(MAN_PAGES)
+.PHONY: all
+.DEFAULT: all
-.c.o:
- $(QUIET) $(CC) $(CFLAGS) -c -o $@ $<
+%.o: %.c $(GEN_HEADERS)
+ $(QUIET) $(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)
+ $(QUIET) $(LD) $(LDFLAGS) $@.o $(OBJS) -o $@ $(LIBUDEV) $(LIBSYSFS) $(LIB_OBJS)
+ $(QUIET) $(STRIPCMD) $@
-$(HOTPLUGD): $(HEADERS) $(HOTPLUGD).o run_directory.o
- $(QUIET) $(LD) $(LDFLAGS) -o $(HOTPLUGD) $(HOTPLUGD).o run_directory.o $(OBJS)
+# man pages
+%.8: %.xml
+ xmlto man $?
+.PRECIOUS: %.8
clean:
- rm -f $(DEVD) $(HOTPLUGD) run_directory.o
-
-spotless: clean
+ rm -f $(PROG) $(OBJS) $(GEN_HEADERS)
+.PHONY: clean
install-bin: all
- $(INSTALL_PROGRAM) $(DEVD) $(DESTDIR)$(sbindir)/$(DEVD)
- $(INSTALL_PROGRAM) $(HOTPLUGD) $(DESTDIR)$(sbindir)/$(HOTPLUGD)
+ $(INSTALL_PROGRAM) udev_run_devd $(DESTDIR)$(sbindir)/udev_run_devd
+ $(INSTALL_PROGRAM) udev_run_devd $(DESTDIR)$(sbindir)/udev_run_hotplugd
+.PHONY: install-bin
uninstall-bin:
- - rm $(DESTDIR)$(sbindir)/$(DEVD)
+ - rm $(DESTDIR)$(sbindir)/udev_run_devd
+ - rm $(DESTDIR)$(sbindir)/udev_run_hotplugd
+.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