(main): Rewrite initializers to avoid warnings.
[glibc.git] / posix / Makefile
blob2e510a190726c3c95461b7b5b1011bb3ef54b5bc
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
63 include ../Makeconfig
65 aux := init-posix environ
66 tests := tstgetopt testfnm runtests runptests \
67 tst-preadwrite tst-preadwrite64 test-vfork regexbug1 \
68 tst-getlogin tst-mmap tst-getaddrinfo tst-truncate \
69 tst-truncate64 tst-fork tst-exec tst-spawn
70 ifeq (yes,$(build-shared))
71 test-srcs := globtest
72 tests += wordexp-test
73 endif
74 others := getconf
75 install-bin := getconf
76 ifeq (yes,$(build-static))
77 install-lib := libposix.a
78 endif
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
87 include ../Rules
89 ifeq (no,$(cross-compiling))
90 # globtest and wordexp-test currently only works with shared libraries
91 ifeq (yes,$(build-shared))
92 .PHONY: do-globtest do-wordexp-test
93 tests: do-globtest do-wordexp-test
94 do-globtest: $(objpfx)globtest
95 $(SHELL) -e globtest.sh $(common-objpfx) $(elf-objpfx) \
96 $(rtld-installed-name)
97 do-wordexp-test: $(objpfx)wordexp-test
98 $(SHELL) -e wordexp-tst.sh $(common-objpfx) $(elf-objpfx) \
99 $(rtld-installed-name)
100 endif
101 endif
103 CFLAGS-regex.c = -Wno-strict-prototypes
104 CFLAGS-getaddrinfo.c = -DRESOLVER
105 tstgetopt-ARGS = -a -b -cfoobar --required foobar --optional=bazbug \
106 --none random
108 tst-exec-ARGS = -- $(built-program-cmd)
109 tst-spawn-ARGS = -- $(built-program-cmd)
111 $(objpfx)libposix.a: $(dep-dummy-lib); $(make-dummy-lib)
112 lib: $(objpfx)libposix.a
114 testcases.h: TESTS TESTS2C.sed
115 sed -f TESTS2C.sed < $< > $@T
116 mv -f $@T $@
117 ifeq ($(with-cvs),yes)
118 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
119 endif
121 ptestcases.h: PTESTS PTESTS2C.sed
122 sed -f PTESTS2C.sed < $< > $@T
123 mv -f $@T $@
124 ifeq ($(with-cvs),yes)
125 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
126 endif
128 # Make the standalone glob/fnmatch package.
130 glob.tar: glob/ChangeLog glob/COPYING.LIB \
131 glob/Makefile.in glob/configure glob/configure.in glob/configure.bat\
132 glob/SCOPTIONS glob/SMakefile glob/Makefile.ami \
133 glob/fnmatch.h glob/glob.h glob/fnmatch.c glob/glob.c
134 tar cho$(verbose)f $@ $^
135 glob/%.c: %.c
136 rm -f $@
137 ln -s ../$< $@
138 glob/%.h: %.h
139 rm -f $@
140 ln -s ../$< $@
142 glob/configure: glob/configure.in
143 cd glob && autoconf $(ACFLAGS)
144 ifeq ($(with-cvs),yes)
145 test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
146 endif
148 glob/ChangeLog: ../ChangeLog
149 changelog-extract --regexp 'posix/(glob|fnmatch).*' < $< > $@.new
150 chmod a-w $@.new
151 mv -f $@.new $@
152 ifeq ($(with-cvs),yes)
153 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
154 endif
156 %.Z: %
157 compress -c $< > $@-tmp
158 mv $@-tmp $@
159 %.gz: %
160 gzip -9v -c $< > $@-tmp
161 mv $@-tmp $@
163 # Run a test on the header files we use.
164 # XXX Please note that for now we ignore the result of this test.
165 tests: $(objpfx)annexc
166 -$(dir $<)$(notdir $<) '$(CC)' \
167 '-I../include -I.. $(+sysdep-includes)' > $<.out
169 $(objpfx)annexc: annexc.c
170 $(native-compile)