chiark / gitweb /
5995b576970f8469ae7e8bfc77aa8c08e7c6fee6
[elogind.git] / Makefile
1 # Makefile for udev
2 #
3 # Copyright (C) 2003,2004 Greg Kroah-Hartman <greg@kroah.com>
4 # Copyright (C) 2004-2005 Kay Sievers <kay.sievers@vrfy.org>
5 #
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.
9 #
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.
14 #
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
18 #
19
20 VERSION = 076
21
22 # set this to make use of syslog
23 USE_LOG = true
24
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)
28 DEBUG = false
29
30 # compile with gcc's code coverage option
31 USE_GCOV = false
32
33 # include Security-Enhanced Linux support
34 USE_SELINUX = false
35
36 # comile with klibc instead of glibc
37 USE_KLIBC = false
38
39 # set this to create statically linked binaries
40 USE_STATIC = false
41
42 # to build any of the extras programs pass:
43 #  make EXTRAS="extras/<extra1> extras/<extra2>"
44 EXTRAS =
45
46 # make the build silent. Set this to something else to make it noisy again.
47 V = false
48
49 PROGRAMS = \
50         udev                            \
51         udevd                           \
52         udevsend                        \
53         udevcontrol                     \
54         udevmonitor                     \
55         udevinfo                        \
56         udevtest                        \
57         udevstart
58
59 HEADERS = \
60         udev.h                          \
61         udev_utils.h                    \
62         udev_rules.h                    \
63         logging.h                       \
64         udev_libc_wrapper.h             \
65         udev_selinux.h                  \
66         list.h
67
68 UDEV_OBJS = \
69         udev_event.o                    \
70         udev_device.o                   \
71         udev_config.o                   \
72         udev_add.o                      \
73         udev_remove.o                   \
74         udev_db.o                       \
75         udev_rules.o                    \
76         udev_rules_parse.o              \
77         udev_utils.o                    \
78         udev_utils_string.o             \
79         udev_utils_file.o               \
80         udev_utils_run.o                \
81         udev_libc_wrapper.o
82 LIBUDEV = libudev.a
83
84 MAN_PAGES = \
85         udev.8                          \
86         udevmonitor.8                   \
87         udevd.8                         \
88         udevsend.8                      \
89         udevtest.8                      \
90         udevinfo.8                      \
91         udevstart.8
92
93 SYSFS_OBJS = \
94         libsysfs/sysfs_class.o          \
95         libsysfs/sysfs_device.o         \
96         libsysfs/sysfs_dir.o            \
97         libsysfs/sysfs_driver.o         \
98         libsysfs/sysfs_utils.o          \
99         libsysfs/dlist.o
100 LIBSYSFS = libsysfs/libsysfs.a
101
102 # config files automatically generated
103 GEN_CONFIGS = \
104         $(LOCAL_CFG_DIR)/udev.conf
105
106 GEN_HEADERS = \
107         udev_version.h
108
109 prefix =
110 etcdir =        ${prefix}/etc
111 sbindir =       ${prefix}/sbin
112 usrbindir =     ${prefix}/usr/bin
113 usrsbindir =    ${prefix}/usr/sbin
114 libudevdir =    ${prefix}/lib/udev
115 mandir =        ${prefix}/usr/share/man
116 configdir =     ${etcdir}/udev
117 udevdir =       /dev
118 LOCAL_CFG_DIR = etc/udev
119 DESTDIR =
120
121 INSTALL = /usr/bin/install -c
122 INSTALL_PROGRAM = ${INSTALL}
123 INSTALL_DATA  = ${INSTALL} -m 644
124 INSTALL_SCRIPT = ${INSTALL_PROGRAM}
125 PWD = $(shell pwd)
126
127 CROSS =
128 CC = $(CROSS)gcc
129 LD = $(CROSS)gcc
130 AR = $(CROSS)ar
131 RANLIB = $(CROSS)ranlib
132 HOSTCC = gcc
133 STRIP = $(CROSS)strip
134 STRIPCMD = $(STRIP) -s
135
136 # check if compiler option is supported
137 cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi;}
138
139 CFLAGS          = -g -Wall -pipe -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
140 WARNINGS        = -Wstrict-prototypes -Wsign-compare -Wshadow \
141                   -Wchar-subscripts -Wmissing-declarations -Wnested-externs \
142                   -Wpointer-arith -Wcast-align -Wsign-compare -Wmissing-prototypes
143 WARNINGS        += $(call cc-supports, -Wdeclaration-after-statement, )
144 CFLAGS          += $(WARNINGS)
145
146 LDFLAGS = -Wl,-warn-common
147
148 # use -Os optimization if available, else use -O2
149 OPTFLAGS := $(call cc-supports, -Os, -O2)
150 CFLAGS += $(OPTFLAGS)
151
152 # include our local copy of libsysfs
153 CFLAGS +=       -I$(PWD)/libsysfs/sysfs \
154                 -I$(PWD)/libsysfs
155
156 ifeq ($(strip $(USE_LOG)),true)
157         CFLAGS += -DUSE_LOG
158 endif
159
160 # if DEBUG is enabled, then we do not strip
161 ifeq ($(strip $(DEBUG)),true)
162         CFLAGS  += -DDEBUG
163         STRIPCMD =
164 endif
165
166 ifeq ($(strip $(USE_GCOV)),true)
167         CFLAGS += -fprofile-arcs -ftest-coverage
168         LDFLAGS += -fprofile-arcs
169 endif
170
171 # if our own version of klibc is used, we need to build it
172 ifeq ($(strip $(USE_KLIBC)),true)
173         KLCC            = /usr/bin/$(CROSS)klcc
174         CC              = $(KLCC)
175         LD              = $(KLCC)
176         V = true
177 endif
178
179 ifeq ($(strip $(USE_SELINUX)),true)
180         UDEV_OBJS += udev_selinux.o
181         LIB_OBJS += -lselinux -lsepol
182         CFLAGS += -DUSE_SELINUX
183 endif
184
185 ifeq ($(strip $(USE_STATIC)),true)
186         CFLAGS += -DUSE_STATIC
187         LDFLAGS += -static
188 endif
189
190 ifeq ($(strip $(V)),false)
191         QUIET=@$(PWD)/ccdv
192         HOST_PROGS=ccdv
193 else
194         QUIET=
195         HOST_PROGS=
196 endif
197
198 all: $(PROGRAMS) $(MAN_PAGES)
199         @extras="$(EXTRAS)"; for target in $$extras; do \
200                 echo $$target; \
201                 $(MAKE) CC="$(CC)" \
202                         CFLAGS="$(CFLAGS)" \
203                         LD="$(LD)" \
204                         LDFLAGS="$(LDFLAGS)" \
205                         STRIPCMD="$(STRIPCMD)" \
206                         LIB_OBJS="$(LIB_OBJS)" \
207                         LIBUDEV="$(PWD)/$(LIBUDEV)" \
208                         LIBSYSFS="$(PWD)/$(LIBSYSFS)" \
209                         QUIET="$(QUIET)" \
210                         -C $$target $@ || exit 1; \
211         done;
212 .PHONY: all
213 .DEFAULT: all
214
215 # clear implicit rules
216 .SUFFIXES:
217
218 # build the objects
219 %.o: %.c $(GEN_HEADERS)
220         $(QUIET) $(CC) -c $(CFLAGS) $< -o $@
221
222 # "Static Pattern Rule" to build all programs
223 $(PROGRAMS): %: $(HOST_PROGS) $(HEADERS) $(GEN_HEADERS) $(LIBSYSFS) $(LIBUDEV) %.o
224         $(QUIET) $(LD) $(LDFLAGS) $@.o -o $@ $(LIBUDEV) $(LIBSYSFS) $(LIB_OBJS)
225 ifneq ($(STRIPCMD),)
226         $(QUIET) $(STRIPCMD) $@
227 endif
228
229 $(UDEV_OBJS):
230 $(LIBUDEV): $(HOST_PROGS) $(HEADERS) $(GEN_HEADERS) $(UDEV_OBJS)
231         @rm -f $@
232         $(QUIET) $(AR) cq $@ $(UDEV_OBJS)
233         $(QUIET) $(RANLIB) $@
234
235 $(SYSFS_OBJS):
236 $(LIBSYSFS): $(HOST_PROGS) $(SYSFS_OBJS)
237         @rm -f $@
238         $(QUIET) $(AR) cq $@ $(SYSFS_OBJS)
239         $(QUIET) $(RANLIB) $@
240
241 # generate config files
242 $(GEN_CONFIGS):
243         sed -e "s:@udevdir@:$(udevdir):" -e "s:@configdir@:$(configdir):" < $@.in > $@
244
245 # generate config header file
246 udev_version.h:
247         @echo "Creating udev_version.h"
248         @echo \#define UDEV_VERSION             \"$(VERSION)\" > $@
249         @echo \#define UDEV_ROOT                \"$(udevdir)\" >> $@
250         @echo \#define UDEV_CONFIG_FILE         \"$(configdir)/udev.conf\" >> $@
251         @echo \#define UDEV_RULES_FILE          \"$(configdir)/rules.d\" >> $@
252
253 # man pages
254 %.8: docs/%.xml
255         xmlto man $?
256 .PRECIOUS: %.8
257
258 ccdv: ccdv.c
259         @$(HOSTCC) -O1 ccdv.c -o ccdv
260 .SILENT: ccdv
261
262 clean:
263         - find . \( -not -type d \) -and \( -name '*~' -o -name '*.[oas]' \) -type f -print0 | xargs -0rt rm -f
264         - find -name "*.gcno" -print0 | xargs -0rt rm -f
265         - find -name "*.gcda" -print0 | xargs -0rt rm -f
266         - find -name "*.gcov" -print0 | xargs -0rt rm -f
267         - rm -f udev_gcov.txt
268         - rm -f core $(PROGRAMS) $(GEN_HEADERS) $(GEN_CONFIGS)
269         - rm -f udev-$(VERSION).tar.gz
270         @extras="$(EXTRAS)"; for target in $$extras; do \
271                 echo $$target; \
272                 $(MAKE) -C $$target $@ || exit 1; \
273         done;
274 .PHONY: clean
275
276 release:
277         git-tar-tree HEAD udev-$(VERSION) | gzip -9v > udev-$(VERSION).tar.gz
278         @echo "udev-$(VERSION).tar.gz created"
279 .PHONY: release
280
281 install-config: $(GEN_CONFIGS)
282         $(INSTALL) -d $(DESTDIR)$(configdir)/rules.d
283         @if [ ! -r $(DESTDIR)$(configdir)/udev.conf ]; then \
284                 echo $(INSTALL_DATA) $(LOCAL_CFG_DIR)/udev.conf $(DESTDIR)$(configdir); \
285                 $(INSTALL_DATA) $(LOCAL_CFG_DIR)/udev.conf $(DESTDIR)$(configdir); \
286         fi
287         @if [ ! -r $(DESTDIR)$(configdir)/rules.d/50-udev.rules ]; then \
288                 echo; \
289                 echo "pick a udev rules file from the etc/udev directory that matches your distribution"; \
290                 echo; \
291         fi
292         @extras="$(EXTRAS)"; for target in $$extras; do \
293                 echo $$target; \
294                 $(MAKE) -C $$target $@ || exit 1; \
295         done;
296 .PHONY: install-config
297
298 install-man:
299         $(INSTALL_DATA) -D udev.8 $(DESTDIR)$(mandir)/man8/udev.8
300         $(INSTALL_DATA) -D udevinfo.8 $(DESTDIR)$(mandir)/man8/udevinfo.8
301         $(INSTALL_DATA) -D udevtest.8 $(DESTDIR)$(mandir)/man8/udevtest.8
302         $(INSTALL_DATA) -D udevstart.8 $(DESTDIR)$(mandir)/man8/udevstart.8
303         $(INSTALL_DATA) -D udevd.8 $(DESTDIR)$(mandir)/man8/udevd.8
304         $(INSTALL_DATA) -D udevsend.8 $(DESTDIR)$(mandir)/man8/udevsend.8
305         $(INSTALL_DATA) -D udevmonitor.8 $(DESTDIR)$(mandir)/man8/udevmonitor.8
306         - ln -f -s udevd.8 $(DESTDIR)$(mandir)/man8/udevcontrol.8
307         @extras="$(EXTRAS)"; for target in $$extras; do \
308                 echo $$target; \
309                 $(MAKE) -C $$target $@ || exit 1; \
310         done;
311 .PHONY: install-man
312
313 uninstall-man:
314         - rm -f $(DESTDIR)$(mandir)/man8/udev.8
315         - rm -f $(DESTDIR)$(mandir)/man8/udevinfo.8
316         - rm -f $(DESTDIR)$(mandir)/man8/udevtest.8
317         - rm -f $(DESTDIR)$(mandir)/man8/udevstart.8
318         - rm -f $(DESTDIR)$(mandir)/man8/udevd.8
319         - rm -f $(DESTDIR)$(mandir)/man8/udevmonitor.8
320         - rm -f $(DESTDIR)$(mandir)/man8/udevsend.8
321         - rm -f $(DESTDIR)$(mandir)/man8/udevcontrol.8
322         @extras="$(EXTRAS)"; for target in $$extras; do \
323                 echo $$target; \
324                 $(MAKE) -C $$target $@ || exit 1; \
325         done;
326 .PHONY: uninstall-man
327
328 install-bin:
329         $(INSTALL) -d $(DESTDIR)$(udevdir)
330         $(INSTALL_PROGRAM) -D udev $(DESTDIR)$(sbindir)/udev
331         $(INSTALL_PROGRAM) -D udevd $(DESTDIR)$(sbindir)/udevd
332         $(INSTALL_PROGRAM) -D udevsend $(DESTDIR)$(sbindir)/udevsend
333         $(INSTALL_PROGRAM) -D udevcontrol $(DESTDIR)$(sbindir)/udevcontrol
334         $(INSTALL_PROGRAM) -D udevmonitor $(DESTDIR)$(usrsbindir)/udevmonitor
335         $(INSTALL_PROGRAM) -D udevinfo $(DESTDIR)$(usrbindir)/udevinfo
336         $(INSTALL_PROGRAM) -D udevtest $(DESTDIR)$(usrbindir)/udevtest
337         $(INSTALL_PROGRAM) -D udevstart $(DESTDIR)$(sbindir)/udevstart
338         @extras="$(EXTRAS)"; for target in $$extras; do \
339                 echo $$target; \
340                 $(MAKE) -C $$target $@ || exit 1; \
341         done;
342 ifndef DESTDIR
343         - killall udevd
344         - rm -rf /dev/.udev
345         - $(sbindir)/udevd --daemon
346 endif
347 .PHONY: install-bin
348
349 uninstall-bin:
350         - rm -f $(DESTDIR)$(sbindir)/udev
351         - rm -f $(DESTDIR)$(sbindir)/udevd
352         - rm -f $(DESTDIR)$(sbindir)/udevsend
353         - rm -f $(DESTDIR)$(sbindir)/udevcontrol
354         - rm -f $(DESTDIR)$(sbindir)/udevstart
355         - rm -f $(DESTDIR)$(usrsbindir)/udevmonitor
356         - rm -f $(usrbindir)/udevinfo
357         - rm -f $(DESTDIR)$(DESTDIR)$(usrbindir)/udevtest
358 ifndef DESTDIR
359         - killall udevd
360         - rm -rf /dev/.udev
361 endif
362         @extras="$(EXTRAS)"; for target in $$extras; do \
363                 echo $$target; \
364                 $(MAKE) -C $$target $@ || exit 1; \
365         done;
366 .PHONY: uninstall-bin
367
368 install: all install-bin install-config install-man
369 .PHONY: install
370
371 uninstall: uninstall-bin uninstall-man
372 .PHONY: uninstall
373
374 test tests: all
375         @ cd test && ./udev-test.pl
376         @ cd test && ./udevstart-test.pl
377 .PHONY: test tests
378
379 buildtest:
380         ./test/simple-build-check.sh
381 .PHONY: buildtest
382
383 gcov-all:
384         $(MAKE) clean all STRIPCMD= USE_GCOV=true
385         @echo
386         @echo "binaries built with gcov support."
387         @echo "run the tests and analyze with 'make udev_gcov.txt'"
388 .PHONY: gcov-all
389
390 # see docs/README-gcov_for_udev
391 udev_gcov.txt: $(wildcard *.gcda) $(wildcard *.gcno)
392         for file in `find -maxdepth 1 -name "*.gcno"`; do \
393                 name=`basename $$file .gcno`; \
394                 echo "################" >> $@; \
395                 echo "$$name.c" >> $@; \
396                 echo "################" >> $@; \
397                 if [ -e "$$name.gcda" ]; then \
398                         gcov -l "$$name.c" >> $@ 2>&1; \
399                 else \
400                         echo "code for $$name.c was never executed" >> $@ 2>&1; \
401                 fi; \
402                 echo >> $@; \
403         done; \
404         echo "view $@ for the result"
405