Update.
[glibc.git] / posix / Makefile
bloba83996f0b4abf49e19d7fd7cdb05cdb0df8d8961
1 # Copyright (C) 1991-1999, 2000 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 Library General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # 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 # Library General Public License for more details.
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB. If not,
16 # write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 # Boston, MA 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 bits/types.h getopt.h \
26 bits/posix1_lim.h bits/posix2_lim.h bits/posix_opt.h \
27 bits/local_lim.h tar.h bits/utsname.h bits/confname.h \
28 bits/waitflags.h bits/waitstatus.h sys/unistd.h sched.h \
29 bits/sched.h re_comp.h wait.h bits/environments.h cpio.h \
30 sys/sysmacros.h spawn.h
32 distribute := confstr.h TESTS TESTS2C.sed testcases.h \
33 PTESTS PTESTS2C.sed ptestcases.h \
34 globtest.c globtest.sh wordexp-tst.sh annexc.c fnmatch_loop.c \
35 spawn_int.h
37 routines := \
38 uname \
39 times \
40 wait waitpid wait3 wait4 waitid \
41 alarm sleep pause nanosleep \
42 fork vfork _exit \
43 execve fexecve execv execle execl execvp execlp \
44 getpid getppid \
45 getuid geteuid getgid getegid getgroups setuid setgid group_member \
46 getpgid setpgid getpgrp bsd-getpgrp setpgrp getsid setsid \
47 getlogin getlogin_r setlogin \
48 pathconf sysconf fpathconf \
49 glob glob64 fnmatch regex \
50 confstr \
51 getopt getopt1 getopt_init \
52 sched_setp sched_getp sched_sets sched_gets sched_yield sched_primax \
53 sched_primin sched_rr_gi \
54 getaddrinfo gai_strerror wordexp \
55 pread pwrite pread64 pwrite64 \
56 spawn_faction_init spawn_faction_destroy spawn_faction_addclose \
57 spawn_faction_addopen spawn_faction_adddup2 \
58 spawnattr_init spawnattr_destroy \
59 spawnattr_getdefault spawnattr_setdefault \
60 spawnattr_getflags spawnattr_setflags \
61 spawnattr_getpgroup spawnattr_setpgroup spawn spawnp spawni \
62 spawnattr_getsigmask spawnattr_getschedpolicy spawnattr_getschedparam \
63 spawnattr_setsigmask spawnattr_setschedpolicy spawnattr_setschedparam
65 include ../Makeconfig
67 aux := init-posix environ
68 tests := tstgetopt testfnm runtests runptests \
69 tst-preadwrite tst-preadwrite64 test-vfork regexbug1 \
70 tst-getlogin tst-mmap tst-getaddrinfo tst-truncate \
71 tst-truncate64 tst-fork tst-fnmatch tst-regexloc tst-dir \
72 tst-chmod
73 ifeq (yes,$(build-shared))
74 test-srcs := globtest
75 tests += wordexp-test tst-exec tst-spawn
76 endif
77 others := getconf
78 install-bin := getconf
79 gpl2lgpl := getopt.c getopt1.c getopt.h regex.c regex.h
81 before-compile := testcases.h ptestcases.h
83 # So they get cleaned up.
84 generated := $(addprefix wordexp-test-result, 1 2 3 4 5 6 7 8 9 10) \
85 annexc annexc.out wordexp-tst.out
87 include ../Rules
89 ifeq (yes,$(built-static-nss))
90 # We need it for "make check" only. We can skip them if they haven't
91 # been built yet during "make".
92 otherlibs += $(wildcard $(nssobjdir)/libnss_files.a \
93 $(resolvobjdir)/libnss_dns.a \
94 $(resolvobjdir)/libresolv.a)
95 endif
97 ifeq (no,$(cross-compiling))
98 # globtest and wordexp-test currently only works with shared libraries
99 ifeq (yes,$(build-shared))
100 tests: $(objpfx)globtest.out $(objpfx)wordexp-tst.out
101 $(objpfx)globtest.out: globtest.sh $(objpfx)globtest
102 $(SHELL) -e globtest.sh $(common-objpfx) $(elf-objpfx) \
103 $(rtld-installed-name)
104 $(objpfx)wordexp-tst.out: wordexp-tst.sh $(objpfx)wordexp-test
105 $(SHELL) -e wordexp-tst.sh $(common-objpfx) $(elf-objpfx) \
106 $(rtld-installed-name)
107 endif
108 endif
110 CFLAGS-regex.c = -Wno-strict-prototypes
111 CFLAGS-getaddrinfo.c = -DRESOLVER
112 tstgetopt-ARGS = -a -b -cfoobar --required foobar --optional=bazbug \
113 --none random --col --color --colour
115 tst-exec-ARGS = -- $(built-program-cmd)
116 tst-spawn-ARGS = -- $(built-program-cmd)
117 tst-dir-ARGS = `pwd` `cd $(common-objdir)/$(subdir); pwd` `cd $(common-objdir); pwd` $(objpfx)tst-dir
118 tst-chmod-ARGS = `pwd`
120 tst-fnmatch-ENV = LOCPATH=$(common-objpfx)localedata
121 tst-regexloc-ENV = LOCPATH=$(common-objpfx)localedata
123 testcases.h: TESTS TESTS2C.sed
124 sed -f TESTS2C.sed < $< > $@T
125 mv -f $@T $@
126 ifeq ($(with-cvs),yes)
127 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
128 endif
130 ptestcases.h: PTESTS PTESTS2C.sed
131 sed -f PTESTS2C.sed < $< > $@T
132 mv -f $@T $@
133 ifeq ($(with-cvs),yes)
134 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
135 endif
137 # Run a test on the header files we use.
138 # XXX Please note that for now we ignore the result of this test.
139 tests: $(objpfx)annexc.out
140 $(objpfx)annexc.out: $(objpfx)annexc
141 -$(dir $<)$(notdir $<) '$(CC)' \
142 '-I../include -I.. $(+sysdep-includes)' > $@
144 $(objpfx)annexc: annexc.c
145 $(native-compile)