3 # Copyright (C) 2003,2004 Greg Kroah-Hartman <greg@kroah.com>
4 # Copyright (C) 2004-2006 Kay Sievers <kay.sievers@vrfy.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; version 2 of the License.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 # set this to make use of syslog
25 # compile-in development debug messages
26 # (export UDEV_LOG="debug" or set udev_log="debug" in udev.conf
27 # to print the debug messages to syslog)
30 # compile with gcc's code coverage option
33 # include Security-Enhanced Linux support
36 # comile with klibc instead of glibc
39 # set this to create statically linked binaries
42 # to build any of the extras programs pass:
43 # make EXTRAS="extras/<extra1> extras/<extra2>"
46 # make the build silent
99 etcdir = ${prefix}/etc
100 sbindir = ${prefix}/sbin
101 usrbindir = ${prefix}/usr/bin
102 usrsbindir = ${prefix}/usr/sbin
103 libudevdir = ${prefix}/lib/udev
104 mandir = ${prefix}/usr/share/man
105 configdir = ${etcdir}/udev
109 INSTALL = /usr/bin/install -c
110 INSTALL_PROGRAM = ${INSTALL}
111 INSTALL_DATA = ${INSTALL} -m 644
112 INSTALL_SCRIPT = ${INSTALL_PROGRAM}
116 CC = $(CROSS_COMPILE)gcc
117 LD = $(CROSS_COMPILE)gcc
118 AR = $(CROSS_COMPILE)ar
119 RANLIB = $(CROSS_COMPILE)ranlib
121 CFLAGS = -g -Wall -pipe -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
122 WARNINGS = -Wstrict-prototypes -Wsign-compare -Wshadow \
123 -Wchar-subscripts -Wmissing-declarations -Wnested-externs \
124 -Wpointer-arith -Wcast-align -Wsign-compare -Wmissing-prototypes
125 CFLAGS += $(WARNINGS)
127 LDFLAGS = -Wl,-warn-common
130 CFLAGS += $(OPTFLAGS)
132 ifeq ($(strip $(USE_LOG)),true)
136 # if DEBUG is enabled, then we do not strip
137 ifeq ($(strip $(DEBUG)),true)
141 ifeq ($(strip $(USE_GCOV)),true)
142 CFLAGS += -fprofile-arcs -ftest-coverage
143 LDFLAGS += -fprofile-arcs
146 ifeq ($(strip $(USE_KLIBC)),true)
147 KLCC = /usr/bin/$(CROSS_COMPILE)klcc
152 ifeq ($(strip $(USE_SELINUX)),true)
153 UDEV_OBJS += udev_selinux.o
154 LIB_OBJS += -lselinux -lsepol
155 CFLAGS += -DUSE_SELINUX
158 ifeq ($(strip $(USE_STATIC)),true)
159 CFLAGS += -DUSE_STATIC
163 ifeq ($(strip $(V)),)
172 all: $(PROGRAMS) $(MAN_PAGES)
173 $(Q) extras="$(EXTRAS)"; for target in $$extras; do \
177 LDFLAGS="$(LDFLAGS)" \
180 LIB_OBJS="$(LIB_OBJS)" \
181 LIBUDEV="$(PWD)/$(LIBUDEV)" \
182 -C $$target $@ || exit 1; \
187 # clear implicit rules
191 %.o: %.c $(HEADERS) $(GEN_HEADERS)
193 $(Q) $(CC) -c $(CFLAGS) $< -o $@
195 # "Static Pattern Rule" to build all programs
196 $(PROGRAMS): %: $(HEADERS) $(GEN_HEADERS) $(LIBUDEV) %.o
198 $(Q) $(LD) $(LDFLAGS) $@.o -o $@ $(LIBUDEV) $(LIB_OBJS)
200 $(LIBUDEV): $(HEADERS) $(GEN_HEADERS) $(UDEV_OBJS)
203 $(Q) $(AR) cq $@ $(UDEV_OBJS)
209 $(Q) echo "/* Generated by make. */" > $@
210 $(Q) echo \#define UDEV_VERSION \"$(VERSION)\" >> $@
211 $(Q) echo \#define UDEV_ROOT \"$(udevdir)\" >> $@
212 $(Q) echo \#define UDEV_CONFIG_FILE \"$(configdir)/udev.conf\" >> $@
213 $(Q) echo \#define UDEV_RULES_FILE \"$(configdir)/rules.d\" >> $@
223 $(Q) - find . -type f -name '*.orig' -print0 | xargs -0r rm -f
224 $(Q) - find . -type f -name '*.rej' -print0 | xargs -0r rm -f
225 $(Q) - find . -type f -name '*~' -print0 | xargs -0r rm -f
226 $(Q) - find . -type f -name '*.[oas]' -print0 | xargs -0r rm -f
227 $(Q) - find . -type f -name "*.gcno" -print0 | xargs -0r rm -f
228 $(Q) - find . -type f -name "*.gcda" -print0 | xargs -0r rm -f
229 $(Q) - find . -type f -name "*.gcov" -print0 | xargs -0r rm -f
230 $(Q) - rm -f udev_gcov.txt
231 $(Q) - rm -f core $(PROGRAMS) $(GEN_HEADERS)
232 $(Q) - rm -f udev-$(VERSION).tar.gz
233 $(Q) - rm -f udev-$(VERSION).tar.bz2
234 @ extras="$(EXTRAS)"; for target in $$extras; do \
235 $(MAKE) -C $$target $@ || exit 1; \
240 git-tar-tree HEAD udev-$(VERSION) | gzip -9v > udev-$(VERSION).tar.gz
241 git-tar-tree HEAD udev-$(VERSION) | bzip2 -9v > udev-$(VERSION).tar.bz2
245 $(INSTALL) -d $(DESTDIR)$(configdir)/rules.d
246 @ if [ ! -r $(DESTDIR)$(configdir)/udev.conf ]; then \
247 $(INSTALL_DATA) etc/udev/udev.conf $(DESTDIR)$(configdir); \
249 @ if [ ! -r $(DESTDIR)$(configdir)/rules.d/50-udev.rules ]; then \
251 echo "pick a udev rules file from the etc/udev directory that matches your distribution"; \
254 @ extras="$(EXTRAS)"; for target in $$extras; do \
255 $(MAKE) -C $$target $@ || exit 1; \
257 .PHONY: install-config
260 $(INSTALL_DATA) -D udev.7 $(DESTDIR)$(mandir)/man7/udev.7
261 $(INSTALL_DATA) -D udevinfo.8 $(DESTDIR)$(mandir)/man8/udevinfo.8
262 $(INSTALL_DATA) -D udevtest.8 $(DESTDIR)$(mandir)/man8/udevtest.8
263 $(INSTALL_DATA) -D udevd.8 $(DESTDIR)$(mandir)/man8/udevd.8
264 $(INSTALL_DATA) -D udevtrigger.8 $(DESTDIR)$(mandir)/man8/udevtrigger.8
265 $(INSTALL_DATA) -D udevsettle.8 $(DESTDIR)$(mandir)/man8/udevsettle.8
266 $(INSTALL_DATA) -D udevmonitor.8 $(DESTDIR)$(mandir)/man8/udevmonitor.8
267 - ln -f -s udevd.8 $(DESTDIR)$(mandir)/man8/udevcontrol.8
268 @extras="$(EXTRAS)"; for target in $$extras; do \
269 $(MAKE) -C $$target $@ || exit 1; \
274 - rm -f $(DESTDIR)$(mandir)/man7/udev.7
275 - rm -f $(DESTDIR)$(mandir)/man8/udevinfo.8
276 - rm -f $(DESTDIR)$(mandir)/man8/udevtest.8
277 - rm -f $(DESTDIR)$(mandir)/man8/udevd.8
278 - rm -f $(DESTDIR)$(mandir)/man8/udevtrigger.8
279 - rm -f $(DESTDIR)$(mandir)/man8/udevsettle.8
280 - rm -f $(DESTDIR)$(mandir)/man8/udevmonitor.8
281 - rm -f $(DESTDIR)$(mandir)/man8/udevcontrol.8
282 @ extras="$(EXTRAS)"; for target in $$extras; do \
283 $(MAKE) -C $$target $@ || exit 1; \
285 .PHONY: uninstall-man
288 $(INSTALL) -d $(DESTDIR)$(udevdir)
289 $(INSTALL_PROGRAM) -D udevd $(DESTDIR)$(sbindir)/udevd
290 $(INSTALL_PROGRAM) -D udevtrigger $(DESTDIR)$(sbindir)/udevtrigger
291 $(INSTALL_PROGRAM) -D udevsettle $(DESTDIR)$(sbindir)/udevsettle
292 $(INSTALL_PROGRAM) -D udevcontrol $(DESTDIR)$(sbindir)/udevcontrol
293 $(INSTALL_PROGRAM) -D udevmonitor $(DESTDIR)$(usrsbindir)/udevmonitor
294 $(INSTALL_PROGRAM) -D udevinfo $(DESTDIR)$(usrbindir)/udevinfo
295 $(INSTALL_PROGRAM) -D udevtest $(DESTDIR)$(usrbindir)/udevtest
296 @extras="$(EXTRAS)"; for target in $$extras; do \
297 $(MAKE) -C $$target $@ || exit 1; \
302 - $(sbindir)/udevd --daemon
307 - rm -f $(DESTDIR)$(sbindir)/udevd
308 - rm -f $(DESTDIR)$(sbindir)/udevtrigger
309 - rm -f $(DESTDIR)$(sbindir)/udevsettle
310 - rm -f $(DESTDIR)$(sbindir)/udevcontrol
311 - rm -f $(DESTDIR)$(usrsbindir)/udevmonitor
312 - rm -f $(DESTDIR)$(usrbindir)/udevinfo
313 - rm -f $(DESTDIR)$(usrbindir)/udevtest
318 @extras="$(EXTRAS)"; for target in $$extras; do \
319 $(MAKE) -C $$target $@ || exit 1; \
321 .PHONY: uninstall-bin
323 install: all install-bin install-config install-man
326 uninstall: uninstall-bin uninstall-man
330 @ cd test && ./udev-test.pl
331 @ cd test && ./udevstart-test.pl
335 test/simple-build-check.sh
340 @ echo "Summary of changes from v$(shell printf '%03i' $$(expr $(VERSION) - 1)) to v$(VERSION)" >> $@
341 @ echo "============================================" >> $@
343 @ git log --pretty=short $(shell printf '%03i' $$(expr $(VERSION) - 1))..HEAD | git shortlog >> $@
350 $(MAKE) clean all USE_GCOV=true
352 @ echo "binaries built with gcov support."
353 @ echo "run the tests and analyze with 'make udev_gcov.txt'"
356 # see docs/README-gcov_for_udev
357 udev_gcov.txt: $(wildcard *.gcda) $(wildcard *.gcno)
358 for file in `find -maxdepth 1 -name "*.gcno"`; do \
359 name=`basename $$file .gcno`; \
360 echo "################" >> $@; \
361 echo "$$name.c" >> $@; \
362 echo "################" >> $@; \
363 if [ -e "$$name.gcda" ]; then \
364 gcov -l "$$name.c" >> $@ 2>&1; \
366 echo "code for $$name.c was never executed" >> $@ 2>&1; \
370 echo "view $@ for the result"