chiark / gitweb /
[PATCH] move udev_selinux into extras/selinux
authorgreg@kroah.com <greg@kroah.com>
Thu, 25 Mar 2004 06:41:45 +0000 (22:41 -0800)
committerGreg KH <gregkh@suse.de>
Wed, 27 Apr 2005 04:35:11 +0000 (21:35 -0700)
extras/selinux/Makefile [new file with mode: 0644]
extras/selinux/udev_selinux.c [moved from udev_selinux.c with 95% similarity]

diff --git a/extras/selinux/Makefile b/extras/selinux/Makefile
new file mode 100644 (file)
index 0000000..8137567
--- /dev/null
@@ -0,0 +1,59 @@
+# Makefile for udev_selinux
+#
+# Copyright (C) 2004 Greg Kroah-Hartman <greg@kroah.com>
+#
+# 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.
+#
+
+# Set the following to control the use of syslog
+# Set it to `false' to remove all logging
+USE_LOG = true
+
+# Set the following to `true' to log the debug
+# and make a unstripped, unoptimized  binary.
+# Leave this set to `false' for production use.
+DEBUG = false
+
+PROG = udev_selinux
+
+DESTDIR =
+
+# override this to make udev look in a different location for it's config files
+prefix =
+exec_prefix =  ${prefix}
+etcdir =       ${prefix}/etc
+sbindir =      ${exec_prefix}/sbin
+usrbindir =    ${exec_prefix}/usr/bin
+mandir =       ${prefix}/usr/share/man
+hotplugdir =   ${etcdir}/hotplug.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}
+
+all: $(PROG)
+
+OBJS = udev_selinux.o
+
+override CFLAGS  += -DUSE_SELINUX
+override LIB_OBJS += -lselinux
+
+$(PROG): $(OBJS)
+       $(LD) $(LDFLAGS) -o $(PROG) $(CRT0) $(OBJS) ../../udev_lib.o $(LIB_OBJS) $(ARCH_LIB_OBJS)
+
+clean:
+       rm -f $(PROG) $(OBJS)
+
+spotless: clean
+
+
+install: all
+
+uninstall: 
+
similarity index 95%
rename from udev_selinux.c
rename to extras/selinux/udev_selinux.c
index 723af9a02fc8753d854149c49dfcc2bfbea4050c..bbbdd6ba5373dde5b696ff9a16127c6a968a0c2a 100644 (file)
@@ -7,9 +7,8 @@
 #include <ctype.h>
 #include <selinux/selinux.h>
 
-#include "udev.h"
-#include "udev_lib.h"
-#include "logging.h"
+#include "../../udev_lib.h"
+#include "../../logging.h"
 
 #ifdef LOG
 unsigned char logname[LOGNAME_SIZE];