* time/tzfile.c (__tzfile_read): Handle the case where there are
[glibc/pb-stable.git] / posix / Makefile
blob7f1ff7bc67a4a56ef3542e23bb3d33ac262ff905
1 # Copyright (C) 1991,92,93,94,95,96,97,98,99 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
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
36 routines := \
37 uname \
38 times \
39 wait waitpid wait3 wait4 waitid \
40 alarm sleep pause nanosleep \
41 fork vfork _exit \
42 execve fexecve execv execle execl execvp execlp \
43 getpid getppid \
44 getuid geteuid getgid getegid getgroups setuid setgid group_member \
45 getpgid setpgid getpgrp bsd-getpgrp setpgrp getsid setsid \
46 getlogin getlogin_r setlogin \
47 pathconf sysconf fpathconf \
48 glob glob64 fnmatch regex \
49 confstr \
50 getopt getopt1 getopt_init \
51 sched_setp sched_getp sched_sets sched_gets sched_yield sched_primax \
52 sched_primin sched_rr_gi \
53 getaddrinfo gai_strerror wordexp \
54 pread pwrite pread64 pwrite64
56 include ../Makeconfig
58 aux := init-posix environ
59 tests := tstgetopt testfnm runtests wordexp-test runptests \
60 tst-preadwrite test-vfork
61 test-srcs := globtest
62 others := getconf
63 install-bin := getconf
64 ifeq (yes,$(build-static))
65 install-lib := libposix.a
66 endif
67 gpl2lgpl := getopt.c getopt1.c getopt.h regex.c regex.h
69 before-compile := testcases.h ptestcases.h
71 # So they get cleaned up.
72 generated := $(addprefix wordexp-test-result, 1 2 3 4 5 6 7 8 9 10) \
73 annexc annexc.out
75 include ../Rules
77 ifeq (no,$(cross-compiling))
78 .PHONY: do-globtest do-wordexp-test
79 tests: do-globtest do-wordexp-test
80 do-globtest: $(objpfx)globtest
81 $(SHELL) -e globtest.sh $(common-objpfx) $(elf-objpfx) \
82 $(rtld-installed-name)
83 do-wordexp-test: $(objpfx)wordexp-test
84 $(SHELL) -e wordexp-tst.sh $(common-objpfx) $(elf-objpfx) \
85 $(rtld-installed-name)
86 endif
88 CFLAGS-regex.c = -Wno-unused -Wno-strict-prototypes
89 CFLAGS-getaddrinfo.c = -DRESOLVER
91 $(objpfx)libposix.a: $(dep-dummy-lib); $(make-dummy-lib)
92 lib: $(objpfx)libposix.a
94 testcases.h: TESTS TESTS2C.sed
95 sed -f TESTS2C.sed < $< > $@T
96 mv -f $@T $@
97 ifeq ($(with-cvs),yes)
98 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
99 endif
101 ptestcases.h: PTESTS PTESTS2C.sed
102 sed -f PTESTS2C.sed < $< > $@T
103 mv -f $@T $@
104 ifeq ($(with-cvs),yes)
105 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
106 endif
108 # Make the standalone glob/fnmatch package.
110 glob.tar: glob/ChangeLog glob/COPYING.LIB \
111 glob/Makefile.in glob/configure glob/configure.in glob/configure.bat\
112 glob/SCOPTIONS glob/SMakefile glob/Makefile.ami \
113 glob/fnmatch.h glob/glob.h glob/fnmatch.c glob/glob.c
114 tar cho$(verbose)f $@ $^
115 glob/%.c: %.c
116 rm -f $@
117 ln -s ../$< $@
118 glob/%.h: %.h
119 rm -f $@
120 ln -s ../$< $@
122 glob/configure: glob/configure.in
123 cd glob && autoconf $(ACFLAGS)
124 ifeq ($(with-cvs),yes)
125 test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
126 endif
128 glob/ChangeLog: ../ChangeLog
129 changelog-extract --regexp 'posix/(glob|fnmatch).*' < $< > $@.new
130 chmod a-w $@.new
131 mv -f $@.new $@
132 ifeq ($(with-cvs),yes)
133 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
134 endif
136 %.Z: %
137 compress -c $< > $@-tmp
138 mv $@-tmp $@
139 %.gz: %
140 gzip -9v -c $< > $@-tmp
141 mv $@-tmp $@
143 # Run a test on the header files we use.
144 # XXX Please note that for now we ignore the result of this test.
145 tests: $(objpfx)annexc
146 -$(dir $<)$(notdir $<) '$(CC)' \
147 '-I../include -I.. $(+sysdep-includes)' > $<.out
149 $(objpfx)annexc: annexc.c
150 $(native-compile)