diff options
author | greg@kroah.com <greg@kroah.com> | 2003-12-08 18:08:52 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:13:06 -0700 |
commit | 7d27ce1dc005b3972ab7ed77a86f6333c2f8ee9f (patch) | |
tree | 84f096448b5b28482278d2f509d259f21b61e205 /README | |
parent | bbd063b5c2aa055a707b472d4e0b1ed297d00674 (diff) |
[PATCH] document the different Makefile config options that we have.
Diffstat (limited to 'README')
-rw-r--r-- | README | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -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 |