]> git.ipfire.org Git - thirdparty/systemd.git/blob - Makefile
[PATCH] 056 release
[thirdparty/systemd.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 # Set this to make use of syslog
21 USE_LOG = true
22
23 # Set this to ad development debug messages
24 DEBUG = false
25
26 # Set this to include Security-Enhanced Linux support.
27 USE_SELINUX = false
28
29 # Set this to comile with the local version of klibc instead of glibc.
30 USE_KLIBC = false
31
32 # Set this to create statically linked binaries.
33 USE_STATIC = false
34
35 # To build any of the extras programs, run with:
36 # make EXTRAS="extras/a extras/b"
37 EXTRAS=
38
39 # make the build silent. Set this to something else to make it noisy again.
40 V=false
41
42 ROOT = udev
43 DAEMON = udevd
44 SENDER = udevsend
45 INFO = udevinfo
46 TESTER = udevtest
47 STARTER = udevstart
48 VERSION = 056
49 INSTALL_DIR = /usr/local/bin
50 RELEASE_NAME = $(ROOT)-$(VERSION)
51 LOCAL_CFG_DIR = etc/udev
52 HOTPLUG_EXEC = $(ROOT)
53 DESTDIR =
54 KERNEL_DIR = /lib/modules/${shell uname -r}/build
55
56 # override this to make udev look in a different location for it's config files
57 prefix =
58 exec_prefix = ${prefix}
59 etcdir = ${prefix}/etc
60 sbindir = ${exec_prefix}/sbin
61 usrbindir = ${exec_prefix}/usr/bin
62 mandir = ${prefix}/usr/share/man
63 hotplugdir = ${etcdir}/hotplug.d/default
64 configdir = ${etcdir}/udev
65 initdir = ${etcdir}/init.d
66 dev_ddir = ${etcdir}/dev.d
67 srcdir = .
68
69 INSTALL = /usr/bin/install -c
70 INSTALL_PROGRAM = ${INSTALL}
71 INSTALL_DATA = ${INSTALL} -m 644
72 INSTALL_SCRIPT = ${INSTALL_PROGRAM}
73
74 # place to put our device nodes
75 udevdir = ${prefix}/udev
76 udevdb = ${udevdir}/.udevdb
77
78 # set up PWD so that older versions of make will work with our build.
79 PWD = $(shell pwd)
80
81 # If you are running a cross compiler, you may want to set this
82 # to something more interesting, like "arm-linux-". If you want
83 # to compile vs uClibc, that can be done here as well.
84 CROSS = #/usr/i386-linux-uclibc/usr/bin/i386-uclibc-
85 CC = $(CROSS)gcc
86 LD = $(CROSS)gcc
87 AR = $(CROSS)ar
88 STRIP = $(CROSS)strip
89 RANLIB = $(CROSS)ranlib
90 HOSTCC = gcc
91
92 export CROSS CC AR STRIP RANLIB CFLAGS LDFLAGS LIB_OBJS
93
94 # code taken from uClibc to determine the current arch
95 ARCH := ${shell $(CC) -dumpmachine | sed -e s'/-.*//' -e 's/i.86/i386/' -e 's/sparc.*/sparc/' \
96 -e 's/arm.*/arm/g' -e 's/m68k.*/m68k/' -e 's/powerpc/ppc/g'}
97
98 # code taken from uClibc to determine the gcc include dir
99 GCCINCDIR := ${shell LC_ALL=C $(CC) -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp"}
100
101 # code taken from uClibc to determine the libgcc.a filename
102 GCC_LIB := $(shell $(CC) -print-libgcc-file-name )
103
104 # use '-Os' optimization if available, else use -O2
105 OPTIMIZATION := ${shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
106 then echo "-Os"; else echo "-O2" ; fi}
107
108 # check if compiler option is supported
109 cc-supports = ${shell if $(CC) ${1} -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; fi;}
110
111 CFLAGS += -Wall -fno-builtin -Wchar-subscripts -Wpointer-arith -Wstrict-prototypes -Wsign-compare
112 CFLAGS += $(call cc-supports,-Wno-pointer-sign)
113 CFLAGS += $(call cc-supports,-Wdeclaration-after-statement)
114 CFLAGS += -pipe
115 CFLAGS += -D_GNU_SOURCE
116
117 HEADERS = \
118 udev.h \
119 udev_utils.h \
120 udev_rules.h \
121 udev_version.h \
122 udev_db.h \
123 udev_sysfs.h \
124 logging.h \
125 udev_libc_wrapper.h \
126 udev_selinux.h \
127 list.h
128
129 SYSFS_OBJS = \
130 libsysfs/sysfs_class.o \
131 libsysfs/sysfs_device.o \
132 libsysfs/sysfs_dir.o \
133 libsysfs/sysfs_driver.o \
134 libsysfs/sysfs_utils.o \
135 libsysfs/dlist.o
136
137 UDEV_OBJS = \
138 udev_utils.o \
139 udev_config.o \
140 udev_add.o \
141 udev_remove.o \
142 udev_sysfs.o \
143 udev_db.o \
144 udev_multiplex.o \
145 udev_rules.o \
146 udev_rules_parse.o \
147 udev_libc_wrapper.o
148
149 OBJS = \
150 udev.a \
151 libsysfs/sysfs.a
152
153 SYSFS = $(PWD)/libsysfs/sysfs.a
154
155 CFLAGS += -I$(PWD)/libsysfs/sysfs \
156 -I$(PWD)/libsysfs
157
158 ifeq ($(strip $(USE_LOG)),true)
159 CFLAGS += -DUSE_LOG
160 endif
161
162 # if DEBUG is enabled, then we do not strip or optimize
163 ifeq ($(strip $(DEBUG)),true)
164 CFLAGS += -O1 -g -DDEBUG
165 LDFLAGS += -Wl
166 STRIPCMD = /bin/true -Since_we_are_debugging
167 else
168 CFLAGS += $(OPTIMIZATION) -fomit-frame-pointer
169 LDFLAGS += -s -Wl
170 STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
171 endif
172
173 # If we are using our version of klibc, then we need to build, link it, and then
174 # link udev against it statically. Otherwise, use glibc and link dynamically.
175 ifeq ($(strip $(USE_KLIBC)),true)
176 KLIBC_INSTALL = $(PWD)/klibc/.install
177 KLCC = $(KLIBC_INSTALL)/bin/klcc
178 CC = $(KLCC)
179 LD = $(KLCC)
180 LDFLAGS += -static
181 else
182 CFLAGS += -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
183 endif
184
185 ifeq ($(strip $(USE_SELINUX)),true)
186 UDEV_OBJS += udev_selinux.o
187 LIB_OBJS += -lselinux
188 CFLAGS += -DUSE_SELINUX
189 endif
190
191 ifeq ($(strip $(USE_STATIC)),true)
192 CFLAGS += -DUSE_STATIC
193 LDFLAGS += -static
194 endif
195
196 ifeq ($(strip $(V)),false)
197 QUIET=@$(PWD)/ccdv
198 HOST_PROGS=ccdv
199 else
200 QUIET=
201 HOST_PROGS=
202 endif
203
204 # config files automatically generated
205 GEN_CONFIGS = $(LOCAL_CFG_DIR)/udev.conf
206
207 all: $(ROOT) $(SENDER) $(DAEMON) $(INFO) $(TESTER) $(STARTER) $(GEN_CONFIGS) $(KLCC)
208 @extras="$(EXTRAS)" ; for target in $$extras ; do \
209 echo $$target ; \
210 $(MAKE) prefix=$(prefix) \
211 LD="$(LD)" \
212 SYSFS="$(SYSFS)" \
213 KERNEL_DIR="$(KERNEL_DIR)" \
214 QUIET="$(QUIET)" \
215 -C $$target $@ ; \
216 done ; \
217
218 $(KLCC):
219 $(MAKE) -C klibc KRNLSRC=$(KERNEL_DIR) SUBDIRS=klibc TESTS= \
220 SHLIBDIR=$(KLIBC_INSTALL)/lib \
221 INSTALLDIR=$(KLIBC_INSTALL) \
222 bindir=$(KLIBC_INSTALL)/bin \
223 mandir=$(KLIBC_INSTALL)/man all install
224 -find $(KLIBC_INSTALL)/include -name SCCS -print| xargs rm -rf
225
226 udev.a: $(UDEV_OBJS)
227 rm -f $@
228 $(QUIET) $(AR) cq $@ $(UDEV_OBJS)
229 $(QUIET) $(RANLIB) $@
230
231 libsysfs/sysfs.a: $(SYSFS_OBJS)
232 rm -f $@
233 $(QUIET) $(AR) cq $@ $(SYSFS_OBJS)
234 $(QUIET) $(RANLIB) $@
235
236 # header files automatically generated
237 GEN_HEADERS = udev_version.h
238
239 ccdv:
240 @echo "Building ccdv"
241 @$(HOSTCC) -O1 ccdv.c -o ccdv
242
243 # Rules on how to create the generated header files
244 udev_version.h:
245 @echo "Creating udev_version.h"
246 @echo \#define UDEV_VERSION \"$(VERSION)\" > $@
247 @echo \#define UDEV_ROOT \"$(udevdir)\" >> $@
248 @echo \#define UDEV_DB \"$(udevdb)\" >> $@
249 @echo \#define UDEV_CONFIG_DIR \"$(configdir)\" >> $@
250 @echo \#define UDEV_CONFIG_FILE \"$(configdir)/udev.conf\" >> $@
251 @echo \#define UDEV_RULES_FILE \"$(configdir)/rules.d\" >> $@
252 @echo \#define UDEV_LOG_DEFAULT \"yes\" >> $@
253 @echo \#define UDEV_BIN \"$(DESTDIR)$(sbindir)/udev\" >> $@
254 @echo \#define UDEVD_BIN \"$(DESTDIR)$(sbindir)/udevd\" >> $@
255
256 # Rules on how to create the generated config files
257 $(LOCAL_CFG_DIR)/udev.conf:
258 sed -e "s:@udevdir@:$(udevdir):" -e "s:@configdir@:$(configdir):" < $(LOCAL_CFG_DIR)/udev.conf.in > $@
259
260 GEN_MANPAGES = udev.8
261 GEN_MANPAGESIN = udev.8.in
262 # Rules on how to create the man pages
263 $(GEN_MANPAGES): $(GEN_MANPAGESIN)
264 sed -e "s:@udevdir@:$(udevdir):" < $@.in > $@
265
266 $(UDEV_OBJS): $(GEN_HEADERS) $(HOST_PROGS)
267 $(SYSFS_OBJS): $(HOST_PROGS)
268 $(OBJS): $(GEN_HEADERS) $(HOST_PROGS)
269 $(ROOT).o: $(GEN_HEADERS) $(HOST_PROGS)
270 $(TESTER).o: $(GEN_HEADERS) $(HOST_PROGS)
271 $(INFO).o: $(GEN_HEADERS) $(HOST_PROGS)
272 $(DAEMON).o: $(GEN_HEADERS) $(HOST_PROGS)
273 $(SENDER).o: $(GEN_HEADERS) $(HOST_PROGS)
274 $(STARTER).o: $(GEN_HEADERS) $(HOST_PROGS)
275
276 $(ROOT): $(KLCC) $(ROOT).o $(OBJS) $(HEADERS) $(GEN_MANPAGES)
277 $(QUIET) $(LD) $(LDFLAGS) -o $@ $(ROOT).o $(OBJS) $(LIB_OBJS)
278 $(QUIET) $(STRIPCMD) $@
279
280 $(TESTER): $(KLCC) $(TESTER).o $(OBJS) $(HEADERS)
281 $(QUIET) $(LD) $(LDFLAGS) -o $@ $(TESTER).o $(OBJS) $(LIB_OBJS)
282 $(QUIET) $(STRIPCMD) $@
283
284 $(INFO): $(KLCC) $(INFO).o $(OBJS) $(HEADERS)
285 $(QUIET) $(LD) $(LDFLAGS) -o $@ $(INFO).o $(OBJS) $(LIB_OBJS)
286 $(QUIET) $(STRIPCMD) $@
287
288 $(DAEMON): $(KLCC) $(DAEMON).o $(OBJS) udevd.h
289 $(QUIET) $(LD) $(LDFLAGS) -o $@ $(DAEMON).o $(OBJS) $(LIB_OBJS)
290 $(QUIET) $(STRIPCMD) $@
291
292 $(SENDER): $(KLCC) $(SENDER).o $(OBJS) udevd.h
293 $(QUIET) $(LD) $(LDFLAGS) -o $@ $(SENDER).o $(OBJS) $(LIB_OBJS)
294 $(QUIET) $(STRIPCMD) $@
295
296 $(STARTER): $(KLCC) $(STARTER).o $(OBJS)
297 $(QUIET) $(LD) $(LDFLAGS) -o $@ $(STARTER).o $(OBJS) $(LIB_OBJS)
298 $(QUIET) $(STRIPCMD) $@
299
300 .c.o:
301 $(QUIET) $(CC) $(CFLAGS) -c -o $@ $<
302
303 clean:
304 -find . \( -not -type d \) -and \( -name '*~' -o -name '*.[oas]' \) -type f -print \
305 | xargs rm -f
306 -rm -f core $(ROOT) $(GEN_HEADERS) $(GEN_CONFIGS) $(GEN_MANPAGES) $(INFO) $(DAEMON) \
307 $(SENDER) $(TESTER) $(STARTER)
308 -rm -f ccdv
309 $(MAKE) -C klibc SUBDIRS=klibc clean
310 @extras="$(EXTRAS)" ; for target in $$extras ; do \
311 echo $$target ; \
312 $(MAKE) prefix=$(prefix) LD="$(LD)" SYSFS="$(SYSFS)" \
313 -C $$target $@ ; \
314 done ; \
315
316 spotless: clean
317 $(MAKE) -C klibc SUBDIRS=klibc spotless
318 rm -rf klibc/.install
319
320 DISTFILES = $(shell find . \( -not -name '.' \) -print | grep -v -e CVS -e "\.tar\.gz" -e "\/\." -e releases -e BitKeeper -e SCCS -e test/sys | sort )
321 DISTDIR := $(RELEASE_NAME)
322 srcdir = .
323 release: spotless
324 -rm -rf $(DISTDIR)
325 mkdir $(DISTDIR)
326 chmod 777 $(DISTDIR)
327 bk export -w $(DISTDIR)
328 tar -c $(DISTDIR) | gzip -9 > $(RELEASE_NAME).tar.gz
329 rm -rf $(DISTDIR)
330 @echo "$(RELEASE_NAME).tar.gz created"
331
332
333 small_release: $(DISTFILES) spotless
334 # @echo $(DISTFILES)
335 @-rm -rf $(DISTDIR)
336 @mkdir $(DISTDIR)
337 @-chmod 777 $(DISTDIR)
338 @for file in $(DISTFILES); do \
339 if test -d $$file; then \
340 mkdir $(DISTDIR)/$$file; \
341 else \
342 cp -p $$file $(DISTDIR)/$$file; \
343 fi; \
344 done
345 @tar -c $(DISTDIR) | gzip -9 > $(RELEASE_NAME).tar.gz
346 @rm -rf $(DISTDIR)
347 @echo "Built $(RELEASE_NAME).tar.gz"
348
349 install-config:
350 $(INSTALL) -d $(DESTDIR)$(configdir)/rules.d
351 @if [ ! -r $(DESTDIR)$(configdir)/udev.conf ]; then \
352 echo $(INSTALL_DATA) $(LOCAL_CFG_DIR)/udev.conf $(DESTDIR)$(configdir); \
353 $(INSTALL_DATA) $(LOCAL_CFG_DIR)/udev.conf $(DESTDIR)$(configdir); \
354 fi
355 @if [ ! -r $(DESTDIR)$(configdir)/rules.d/50-udev.rules ]; then \
356 echo $(INSTALL_DATA) $(LOCAL_CFG_DIR)/udev.rules $(DESTDIR)$(configdir)/rules.d/50-udev.rules; \
357 $(INSTALL_DATA) $(LOCAL_CFG_DIR)/udev.rules $(DESTDIR)$(configdir)/rules.d/50-udev.rules; \
358 fi
359
360 install-dev.d:
361 $(INSTALL) -d $(DESTDIR)$(dev_ddir)/default
362 $(INSTALL_PROGRAM) -D etc/dev.d/net/hotplug.dev $(DESTDIR)$(dev_ddir)/net/hotplug.dev
363
364 uninstall-dev.d:
365 - rm $(dev_ddir)/net/hotplug.dev
366 - rmdir $(dev_ddir)/net
367 - rmdir $(dev_ddir)/default
368 - rmdir $(dev_ddir)
369
370 install-man:
371 $(INSTALL_DATA) -D udev.8 $(DESTDIR)$(mandir)/man8/udev.8
372 $(INSTALL_DATA) -D udevinfo.8 $(DESTDIR)$(mandir)/man8/udevinfo.8
373 $(INSTALL_DATA) -D udevtest.8 $(DESTDIR)$(mandir)/man8/udevtest.8
374 $(INSTALL_DATA) -D udevstart.8 $(DESTDIR)$(mandir)/man8/udevstart.8
375 $(INSTALL_DATA) -D udevd.8 $(DESTDIR)$(mandir)/man8/udevd.8
376 - ln -f -s udevd.8 $(DESTDIR)$(mandir)/man8/udevsend.8
377
378 uninstall-man:
379 - rm $(mandir)/man8/udev.8
380 - rm $(mandir)/man8/udevinfo.8
381 - rm $(mandir)/man8/udevtest.8
382 - rm $(mandir)/man8/udevstart.8
383 - rm $(mandir)/man8/udevd.8
384 - rm $(mandir)/man8/udevsend.8
385
386 install: install-config install-man install-dev.d all
387 $(INSTALL) -d $(DESTDIR)$(udevdir)
388 $(INSTALL) -d $(DESTDIR)$(hotplugdir)
389 $(INSTALL_PROGRAM) -D $(ROOT) $(DESTDIR)$(sbindir)/$(ROOT)
390 $(INSTALL_PROGRAM) -D $(DAEMON) $(DESTDIR)$(sbindir)/$(DAEMON)
391 $(INSTALL_PROGRAM) -D $(SENDER) $(DESTDIR)$(sbindir)/$(SENDER)
392 $(INSTALL_PROGRAM) -D $(INFO) $(DESTDIR)$(usrbindir)/$(INFO)
393 $(INSTALL_PROGRAM) -D $(TESTER) $(DESTDIR)$(usrbindir)/$(TESTER)
394 $(INSTALL_PROGRAM) -D $(STARTER) $(DESTDIR)$(sbindir)/$(STARTER)
395 - ln -f -s $(sbindir)/$(SENDER) $(DESTDIR)$(hotplugdir)/10-udev.hotplug
396 ifndef DESTDIR
397 - killall $(DAEMON)
398 - rm -rf $(udevdb)
399 endif
400 @extras="$(EXTRAS)" ; for target in $$extras ; do \
401 echo $$target ; \
402 $(MAKE) prefix=$(prefix) LD="$(LD)" SYSFS="$(SYSFS)" \
403 -C $$target $@ ; \
404 done ; \
405
406 uninstall: uninstall-man uninstall-dev.d
407 - rm $(hotplugdir)/10-udev.hotplug
408 - rm $(configdir)/rules.d/50-udev.rules
409 - rm $(configdir)/udev.conf
410 - rmdir $(configdir)/rules.d
411 - rmdir $(configdir)
412 - rm $(sbindir)/$(ROOT)
413 - rm $(sbindir)/$(DAEMON)
414 - rm $(sbindir)/$(SENDER)
415 - rm $(sbindir)/$(STARTER)
416 - rm $(usrbindir)/$(INFO)
417 - rm $(usrbindir)/$(TESTER)
418 - rmdir $(hotplugdir)
419 - rm -rf $(udevdb)
420 - rmdir $(udevdir)
421 - killall $(DAEMON)
422 @extras="$(EXTRAS)" ; for target in $$extras ; do \
423 echo $$target ; \
424 $(MAKE) prefix=$(prefix) LD="$(LD)" SYSFS="$(SYSFS)" \
425 -C $$target $@ ; \
426 done ; \
427
428 test: all
429 @ cd test && ./udev-test.pl