Updated to fedora-glibc-20050725T0627
[glibc.git] / posix / Makefile
blobcabc1d44d0fc2360635565dd62bf09484ca0dfb6
1 # Copyright (C) 1991-1999, 2000-2003, 2004, 2005 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # The GNU C Library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with the GNU C Library; if not, write to the Free
16 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 # 02111-1307 USA.
20 # Sub-makefile for POSIX portion of the library.
22 subdir := posix
24 headers := sys/utsname.h sys/times.h sys/wait.h sys/types.h unistd.h \
25 glob.h regex.h wordexp.h fnmatch.h getopt.h \
26 bits/types.h bits/typesizes.h bits/pthreadtypes.h \
27 bits/posix1_lim.h bits/posix2_lim.h bits/posix_opt.h \
28 bits/local_lim.h tar.h bits/utsname.h bits/confname.h \
29 bits/waitflags.h bits/waitstatus.h sys/unistd.h sched.h \
30 bits/sched.h re_comp.h wait.h bits/environments.h cpio.h \
31 sys/sysmacros.h spawn.h bits/unistd.h
33 distribute := confstr.h TESTS TESTS2C.sed testcases.h \
34 PTESTS PTESTS2C.sed ptestcases.h \
35 globtest.c globtest.sh wordexp-tst.sh annexc.c fnmatch_loop.c \
36 spawn_int.h tst-getconf.sh regcomp.c regexec.c regex_internal.c \
37 regex_internal.h fork.h rxspencer/tests rxspencer/COPYRIGHT \
38 PCRE.tests BOOST.tests
40 routines := \
41 uname \
42 times \
43 wait waitpid wait3 wait4 waitid \
44 alarm sleep pause nanosleep \
45 fork vfork _exit \
46 execve fexecve execv execle execl execvp execlp \
47 getpid getppid \
48 getuid geteuid getgid getegid getgroups setuid setgid group_member \
49 getpgid setpgid getpgrp bsd-getpgrp setpgrp getsid setsid \
50 getresuid getresgid setresuid setresgid \
51 getlogin getlogin_r setlogin \
52 pathconf sysconf fpathconf \
53 glob glob64 fnmatch regex \
54 confstr \
55 getopt getopt1 getopt_init \
56 sched_setp sched_getp sched_sets sched_gets sched_yield sched_primax \
57 sched_primin sched_rr_gi sched_getaffinity sched_setaffinity \
58 getaddrinfo gai_strerror wordexp \
59 pread pwrite pread64 pwrite64 \
60 spawn_faction_init spawn_faction_destroy spawn_faction_addclose \
61 spawn_faction_addopen spawn_faction_adddup2 \
62 spawnattr_init spawnattr_destroy \
63 spawnattr_getdefault spawnattr_setdefault \
64 spawnattr_getflags spawnattr_setflags \
65 spawnattr_getpgroup spawnattr_setpgroup spawn spawnp spawni \
66 spawnattr_getsigmask spawnattr_getschedpolicy spawnattr_getschedparam \
67 spawnattr_setsigmask spawnattr_setschedpolicy spawnattr_setschedparam \
68 posix_madvise
70 include ../Makeconfig
72 aux := init-posix environ
73 tests := tstgetopt testfnm runtests runptests \
74 tst-preadwrite tst-preadwrite64 test-vfork regexbug1 \
75 tst-getlogin tst-mmap tst-getaddrinfo tst-truncate \
76 tst-truncate64 tst-fork tst-fnmatch tst-regexloc tst-dir \
77 tst-chmod bug-regex1 bug-regex2 bug-regex3 bug-regex4 \
78 tst-gnuglob tst-regex bug-regex5 bug-regex6 bug-regex7 \
79 bug-regex8 bug-regex9 bug-regex10 bug-regex11 bug-regex12 \
80 bug-regex13 bug-regex14 bug-regex15 bug-regex16 \
81 bug-regex17 bug-regex18 bug-regex19 bug-regex20 \
82 bug-regex21 bug-regex22 bug-regex23 bug-regex24 \
83 tst-nice tst-nanosleep tst-regex2 \
84 transbug tst-rxspencer tst-pcre tst-boost \
85 bug-ga1 tst-vfork1 tst-vfork2 tst-waitid \
86 tst-getaddrinfo2 bug-glob1 bug-glob2 tst-sysconf \
87 tst-execvp1 tst-execvp2 tst-execlp1 tst-execlp2 \
88 tst-execv1 tst-execv2 tst-execl1 tst-execl2 \
89 tst-execve1 tst-execve2 tst-execle1 tst-execle2 \
90 tst-execvp3 tst-execvp4
91 xtests := bug-ga2
92 ifeq (yes,$(build-shared))
93 test-srcs := globtest
94 tests += wordexp-test tst-exec tst-spawn
95 endif
96 others := getconf
97 install-bin := getconf
98 install-others := $(inst_libexecdir)/getconf
100 before-compile := testcases.h ptestcases.h
102 # So they get cleaned up.
103 generated := $(addprefix wordexp-test-result, 1 2 3 4 5 6 7 8 9 10) \
104 annexc annexc.out wordexp-tst.out bug-regex2-mem \
105 bug-regex2.mtrace bug-regex14-mem bug-regex14.mtrace \
106 bug-regex21-mem bug-regex21.mtrace \
107 tst-rxspencer-mem tst-rxspencer.mtrace tst-getconf.out \
108 tst-pcre-mem tst-pcre.mtrace tst-boost-mem tst-boost.mtrace \
109 bug-ga2.mtrace bug-ga2-mem bug-glob2.mtrace bug-glob2-mem \
110 getconf.speclist
112 include ../Rules
114 ifeq (yes,$(build-static-nss))
115 # We need it for "make check" only. We can skip them if they haven't
116 # been built yet during "make".
117 otherlibs += $(wildcard $(nssobjdir)/libnss_files.a \
118 $(resolvobjdir)/libnss_dns.a \
119 $(resolvobjdir)/libresolv.a)
120 endif
122 ifeq (no,$(cross-compiling))
123 # globtest and wordexp-test currently only works with shared libraries
124 ifeq (yes,$(build-shared))
125 tests: $(objpfx)globtest.out $(objpfx)wordexp-tst.out
126 $(objpfx)globtest.out: globtest.sh $(objpfx)globtest
127 $(SHELL) -e globtest.sh $(common-objpfx) $(elf-objpfx) \
128 $(rtld-installed-name)
129 $(objpfx)wordexp-tst.out: wordexp-tst.sh $(objpfx)wordexp-test
130 $(SHELL) -e wordexp-tst.sh $(common-objpfx) $(elf-objpfx) \
131 $(rtld-installed-name)
132 endif
133 endif
135 CFLAGS-regex.c = -Wno-strict-prototypes
136 CFLAGS-getaddrinfo.c = -DRESOLVER -fexceptions -DUSE_NSCD
137 CFLAGS-pread.c = -fexceptions -fasynchronous-unwind-tables
138 CFLAGS-pread64.c = -fexceptions -fasynchronous-unwind-tables
139 CFLAGS-pwrite.c = -fexceptions -fasynchronous-unwind-tables
140 CFLAGS-pwrite64.c = -fexceptions -fasynchronous-unwind-tables
141 CFLAGS-sleep.c = -fexceptions
142 CFLAGS-wait.c = -fexceptions -fasynchronous-unwind-tables
143 CFLAGS-waitid.c = -fexceptions
144 CFLAGS-waitpid.c = -fexceptions -fasynchronous-unwind-tables
145 CFLAGS-getopt.c = -fexceptions
146 CFLAGS-wordexp.c = -fexceptions
147 CFLAGS-wordexp.os = -fomit-frame-pointer
148 CFLAGS-sysconf.c = -fexceptions -DGETCONF_DIR='"$(libexecdir)/getconf"'
149 CFLAGS-pathconf.c = -fexceptions
150 CFLAGS-fpathconf.c = -fexceptions
151 CFLAGS-spawn.c = -fexceptions
152 CFLAGS-spawn.os = -fomit-frame-pointer
153 CFLAGS-spawnp.c = -fexceptions
154 CFLAGS-spawnp.os = -fomit-frame-pointer
155 CFLAGS-spawni.c = -fexceptions
156 CFLAGS-spawni.os = -fomit-frame-pointer
157 CFLAGS-pause.c = -fexceptions
158 CFLAGS-glob.c = $(uses-callbacks) -fexceptions
159 CFLAGS-glob64.c = $(uses-callbacks) -fexceptions
160 CFLAGS-getconf.c = -DGETCONF_DIR='"$(libexecdir)/getconf"'
161 CFLAGS-execve.os = -fomit-frame-pointer
162 CFLAGS-fexecve.os = -fomit-frame-pointer
163 CFLAGS-execv.os = -fomit-frame-pointer
164 CFLAGS-execle.os = -fomit-frame-pointer
165 CFLAGS-execl.os = -fomit-frame-pointer
166 CFLAGS-execvp.os = -fomit-frame-pointer
167 CFLAGS-execlp.os = -fomit-frame-pointer
169 tstgetopt-ARGS = -a -b -cfoobar --required foobar --optional=bazbug \
170 --none random --col --color --colour
172 tst-exec-ARGS = -- $(built-program-cmd)
173 tst-spawn-ARGS = -- $(built-program-cmd)
174 tst-dir-ARGS = `pwd` `cd $(common-objdir)/$(subdir); pwd` `cd $(common-objdir); pwd` $(objpfx)tst-dir
175 tst-chmod-ARGS = `pwd`
177 tst-fnmatch-ENV = LOCPATH=$(common-objpfx)localedata
178 tst-regexloc-ENV = LOCPATH=$(common-objpfx)localedata
179 bug-regex1-ENV = LOCPATH=$(common-objpfx)localedata
180 tst-regex-ENV = LOCPATH=$(common-objpfx)localedata
181 tst-regex2-ENV = LOCPATH=$(common-objpfx)localedata
182 bug-regex5-ENV = LOCPATH=$(common-objpfx)localedata
183 bug-regex6-ENV = LOCPATH=$(common-objpfx)localedata
184 bug-regex17-ENV = LOCPATH=$(common-objpfx)localedata
185 bug-regex18-ENV = LOCPATH=$(common-objpfx)localedata
186 bug-regex19-ENV = LOCPATH=$(common-objpfx)localedata
187 bug-regex20-ENV = LOCPATH=$(common-objpfx)localedata
188 bug-regex22-ENV = LOCPATH=$(common-objpfx)localedata
189 bug-regex23-ENV = LOCPATH=$(common-objpfx)localedata
190 tst-rxspencer-ARGS = --utf8 rxspencer/tests
191 tst-rxspencer-ENV = LOCPATH=$(common-objpfx)localedata
192 tst-pcre-ARGS = PCRE.tests
193 tst-boost-ARGS = BOOST.tests
194 bug-glob1-ARGS = "$(objpfx)"
195 tst-execvp3-ARGS = --test-dir=$(objpfx)
197 testcases.h: TESTS TESTS2C.sed
198 sed -f TESTS2C.sed < $< > $@T
199 mv -f $@T $@
200 ifeq ($(with-cvs),yes)
201 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
202 endif
204 ptestcases.h: PTESTS PTESTS2C.sed
205 sed -f PTESTS2C.sed < $< > $@T
206 mv -f $@T $@
207 ifeq ($(with-cvs),yes)
208 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
209 endif
211 # Run a test on the header files we use.
212 # XXX Please note that for now we ignore the result of this test.
213 tests: $(objpfx)annexc.out
214 ifeq (no,$(cross-compiling))
215 tests: $(objpfx)bug-regex2-mem $(objpfx)bug-regex14-mem \
216 $(objpfx)bug-regex21-mem $(objpfx)tst-rxspencer-mem \
217 $(objpfx)tst-pcre-mem $(objpfx)tst-boost-mem $(objpfx)tst-getconf.out \
218 $(objpfx)bug-glob2-mem
219 xtests: $(objpfx)bug-ga2-mem
220 endif
222 $(objpfx)annexc.out: $(objpfx)annexc
223 -$(dir $<)$(notdir $<) '$(CC)' \
224 '$(patsubst %,-I../%,$(sorted-subdirs)) -I../include -I.. $(+sysdep-includes) $(sysincludes)' > $@
226 annexc-CFLAGS = -O
227 $(objpfx)annexc: annexc.c
228 $(native-compile)
230 bug-regex2-ENV = MALLOC_TRACE=$(objpfx)bug-regex2.mtrace
232 $(objpfx)bug-regex2-mem: $(objpfx)bug-regex2.out
233 $(common-objpfx)malloc/mtrace $(objpfx)bug-regex2.mtrace > $@
235 bug-regex14-ENV = MALLOC_TRACE=$(objpfx)bug-regex14.mtrace
237 $(objpfx)bug-regex14-mem: $(objpfx)bug-regex14.out
238 $(common-objpfx)malloc/mtrace $(objpfx)bug-regex14.mtrace > $@
240 bug-regex21-ENV = MALLOC_TRACE=$(objpfx)bug-regex21.mtrace
242 $(objpfx)bug-regex21-mem: $(objpfx)bug-regex21.out
243 $(common-objpfx)malloc/mtrace $(objpfx)bug-regex21.mtrace > $@
245 # tst-rxspencer.mtrace is generated only when run without --utf8
246 # option, since otherwise the file has almost 100M and takes very long
247 # time to process.
248 $(objpfx)tst-rxspencer-mem: $(objpfx)tst-rxspencer.out
249 MALLOC_TRACE=$(objpfx)tst-rxspencer.mtrace $(tst-rxspencer-ENV) \
250 $(run-program-prefix) $(objpfx)tst-rxspencer rxspencer/tests \
251 > /dev/null
252 $(common-objpfx)malloc/mtrace $(objpfx)tst-rxspencer.mtrace > $@
254 tst-pcre-ENV = MALLOC_TRACE=$(objpfx)tst-pcre.mtrace
255 $(objpfx)tst-pcre-mem: $(objpfx)tst-pcre.out
256 $(common-objpfx)malloc/mtrace $(objpfx)tst-pcre.mtrace > $@
258 tst-boost-ENV = MALLOC_TRACE=$(objpfx)tst-boost.mtrace
259 $(objpfx)tst-boost-mem: $(objpfx)tst-boost.out
260 $(common-objpfx)malloc/mtrace $(objpfx)tst-boost.mtrace > $@
262 $(objpfx)tst-getconf.out: tst-getconf.sh $(objpfx)getconf
263 $(SHELL) -e $< $(common-objpfx) $(elf-objpfx) $(rtld-installed-name)
265 ifeq (yes,$(build-shared))
266 $(objpfx)tst-regex: $(common-objpfx)rt/librt.so
267 $(objpfx)tst-regex2: $(common-objpfx)rt/librt.so
268 else
269 $(objpfx)tst-regex: $(common-objpfx)rt/librt.a
270 $(objpfx)tst-regex2: $(common-objpfx)rt/librt.a
271 endif
273 $(objpfx)bug-ga2-mem: $(objpfx)bug-ga2.out
274 $(common-objpfx)malloc/mtrace $(objpfx)bug-ga2.mtrace > $@
276 bug-ga2-ENV = MALLOC_TRACE=$(objpfx)bug-ga2.mtrace
278 bug-glob2-ENV = MALLOC_TRACE=$(objpfx)bug-glob2.mtrace
280 $(objpfx)bug-glob2-mem: $(objpfx)bug-glob2.out
281 $(common-objpfx)malloc/mtrace $(objpfx)bug-glob2.mtrace > $@
283 $(inst_libexecdir)/getconf: $(objpfx)getconf $(objpfx)getconf.speclist FORCE
284 $(addprefix $(..)./scripts/mkinstalldirs ,\
285 $(filter-out $(wildcard $@),$@))
286 for spec in `cat $(objpfx)getconf.speclist`; do \
287 $(INSTALL_PROGRAM) $< $@/$$spec.new; \
288 mv -f $@/$$spec.new $@/$$spec; \
289 done
291 $(objpfx)getconf.speclist: getconf.speclist.h
292 $(CC) -E $(CFLAGS) $(CPPFLAGS) $< \
293 | sed -n -e '/START_OF_STRINGS/,$${/POSIX_V6_/{s/^[^"]*"//;s/".*$$//;p}}' \
294 > $@.new
295 mv -f $@.new $@