]> sourceware.org Git - glibc.git/blob - posix/Makefile
Update.
[glibc.git] / posix / Makefile
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.
3
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.
8
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.
13
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.
18
19 #
20 # Sub-makefile for POSIX portion of the library.
21 #
22 subdir := posix
23
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
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
34
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
54
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 ifeq (yes,$(build-static))
61 install-lib := libposix.a
62 endif
63 gpl2lgpl := getopt.c getopt1.c getopt.h regex.c regex.h
64
65 before-compile := testcases.h ptestcases.h
66
67 # So they get cleaned up.
68 generated := $(addprefix wordexp-test-result, 1 2 3 4 5 6 7 8 9 10) \
69 annexc annexc.out
70
71 include ../Rules
72
73 ifeq (no,$(cross-compiling))
74 .PHONY: do-globtest do-wordexp-test
75 tests: do-globtest do-wordexp-test
76 do-globtest: $(objpfx)globtest
77 $(SHELL) -e globtest.sh $(common-objpfx) $(elf-objpfx) \
78 $(rtld-installed-name)
79 do-wordexp-test: $(objpfx)wordexp-test
80 $(SHELL) -e wordexp-tst.sh $(common-objpfx) $(elf-objpfx) \
81 $(rtld-installed-name)
82 endif
83
84 CFLAGS-regex.c = -Wno-unused -Wno-strict-prototypes
85 CFLAGS-getaddrinfo.c = -DRESOLVER
86
87 $(objpfx)libposix.a: $(dep-dummy-lib); $(make-dummy-lib)
88 lib: $(objpfx)libposix.a
89
90 testcases.h: TESTS TESTS2C.sed
91 sed -f TESTS2C.sed < $< > $@T
92 mv -f $@T $@
93 ifeq ($(with-cvs),yes)
94 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
95 endif
96
97 ptestcases.h: PTESTS PTESTS2C.sed
98 sed -f PTESTS2C.sed < $< > $@T
99 mv -f $@T $@
100 ifeq ($(with-cvs),yes)
101 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
102 endif
103 \f
104 # Make the standalone glob/fnmatch package.
105
106 glob.tar: glob/ChangeLog glob/COPYING.LIB \
107 glob/Makefile.in glob/configure glob/configure.in glob/configure.bat\
108 glob/SCOPTIONS glob/SMakefile glob/Makefile.ami \
109 glob/fnmatch.h glob/glob.h glob/fnmatch.c glob/glob.c
110 tar cho$(verbose)f $@ $^
111 glob/%.c: %.c
112 rm -f $@
113 ln -s ../$< $@
114 glob/%.h: %.h
115 rm -f $@
116 ln -s ../$< $@
117
118 glob/configure: glob/configure.in
119 cd glob && autoconf $(ACFLAGS)
120 ifeq ($(with-cvs),yes)
121 test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
122 endif
123
124 glob/ChangeLog: ../ChangeLog
125 changelog-extract --regexp 'posix/(glob|fnmatch).*' < $< > $@.new
126 chmod a-w $@.new
127 mv -f $@.new $@
128 ifeq ($(with-cvs),yes)
129 test ! -d CVS || cvs $(CVSOPTS) commit -mRegenerated $@
130 endif
131
132 %.Z: %
133 compress -c $< > $@-tmp
134 mv $@-tmp $@
135 %.gz: %
136 gzip -9v -c $< > $@-tmp
137 mv $@-tmp $@
138
139 # Run a test on the header files we use.
140 # XXX Please note that for now we ignore the result of this test.
141 tests: $(objpfx)annexc
142 -$(dir $<)$(notdir $<) '$(CC)' \
143 '-I../include -I.. $(+sysdep-includes)' > $<.out
144
145 $(objpfx)annexc: annexc.c
146 $(native-compile)
This page took 0.053224 seconds and 6 git commands to generate.