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