chiark / gitweb /
[PATCH] document the different Makefile config options that we have.
authorgreg@kroah.com <greg@kroah.com>
Tue, 9 Dec 2003 02:08:52 +0000 (18:08 -0800)
committerGreg KH <gregkh@suse.de>
Wed, 27 Apr 2005 04:13:06 +0000 (21:13 -0700)
README

diff --git a/README b/README
index fffa7939879a1d814d30425490715dcb907c4497..94a397936e5e7989a5e31ccfcfc44206512e1d28 100644 (file)
--- a/README
+++ b/README
@@ -25,6 +25,27 @@ To use:
 - Build the project:
        make
 
+  Note:
+      There are a number of different flags that you can use when building
+      udev.  They are as follows:
+       prefix - set this to the default root that you want udev to be
+               installed into.  This works just like the 'configure --prefix'
+               script does.  Default value is ''.  Only override this if you
+               really know what you are doing.
+       KLIBC - if set to 'true', udev is built and linked against the included
+               version of klibc.  Default value is 'false'.
+       DEBUG - if set to 'true', debugging messages will be sent to the syslog
+               as udev is run.  Default value is 'false'.
+       DBUS -  if set to 'true', DBUS messages will be sent everytime udev
+               creates or removes a device node.  This requires that DBUS
+               development headers and libraries be present on your system to
+               build properly.  Default value is 'false'.
+
+      So, if you want to build udev using klibc with debugging messages, you
+      would do:
+       make KLIBC=true DEBUG=true
+
+
 - Install the project:
        make install