b7050867e42205f024ac22f18daf6e0a4b435fa8
[platform/upstream/glibc.git] / posix / Makefile
1 # Copyright (C) 1991, 92, 93, 94, 95, 96, 97 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
30
31 distribute := confstr.h TESTS TESTS2C.sed testcases.h \
32               globtest.c globtest.sh
33
34 routines :=                                                                   \
35         uname                                                                 \
36         times                                                                 \
37         wait waitpid wait3 wait4                                              \
38         alarm sleep pause nanosleep                                           \
39         fork vfork _exit                                                      \
40         execve fexecve execv execle execl execvp execlp                       \
41         getpid getppid                                                        \
42         getuid geteuid getgid getegid getgroups setuid setgid group_member    \
43         getpgid setpgid getpgrp bsd-getpgrp setpgrp getsid setsid             \
44         getlogin getlogin_r setlogin                                          \
45         pathconf sysconf fpathconf                                            \
46         glob fnmatch regex                                                    \
47         confstr                                                               \
48         getopt getopt1 getopt_init                                            \
49         sched_setp sched_getp sched_sets sched_gets sched_yield sched_primax  \
50         sched_primin sched_rr_gi                                              \
51         getaddrinfo gai_strerror wordexp                                      \
52         pread pwrite pread64 pwrite64
53
54 aux             := init-posix environ
55 tests           := tstgetopt testfnm runtests
56 test-srcs       := globtest
57 others          := getconf
58 install-bin     := getconf
59 install-lib     := libposix.a
60 gpl2lgpl := getopt.c getopt1.c getopt.h regex.c regex.h
61
62 before-compile  := testcases.h
63
64 include ../Rules
65
66 ifeq (no,$(cross-compiling))
67 tests: $(objpfx)globtest
68         $(SHELL) -e globtest.sh $(common-objpfx) $(elf-objpfx) $(rtld-installed-name)
69 endif
70
71 CFLAGS-regex.c = -Wno-unused -Wno-strict-prototypes
72 CFLAGS-getaddrinfo.c = -DRESOLVER
73
74 $(objpfx)libposix.a: $(dep-dummy-lib); $(make-dummy-lib)
75 lib: $(objpfx)libposix.a
76
77 testcases.h: TESTS TESTS2C.sed
78         sed -f TESTS2C.sed < $< > $@T
79         mv -f $@T $@
80         test ! -d CVS || cvs commit -mRegenerated $@
81 \f
82 # Make the standalone glob/fnmatch package.
83
84 glob.tar: glob/ChangeLog glob/COPYING.LIB \
85           glob/Makefile.in glob/configure glob/configure.in glob/configure.bat\
86           glob/SCOPTIONS glob/SMakefile glob/Makefile.ami \
87           glob/fnmatch.h glob/glob.h glob/fnmatch.c glob/glob.c
88         tar cho$(verbose)f $@ $^
89 glob/%.c: %.c
90         rm -f $@
91         ln -s ../$< $@
92 glob/%.h: %.h
93         rm -f $@
94         ln -s ../$< $@
95
96 glob/configure: glob/configure.in
97         cd glob; autoconf $(ACFLAGS)
98         test ! -d CVS || cvs commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
99
100 glob/ChangeLog: ../ChangeLog
101         changelog-extract --regexp 'posix/(glob|fnmatch).*' < $< > $@.new
102         chmod a-w $@.new
103         mv -f $@.new $@
104         test ! -d CVS || cvs commit -mRegenerated $@
105
106 %.Z: %
107         compress -c $< > $@-tmp
108         mv $@-tmp $@
109 %.gz: %
110         gzip -9v -c $< > $@-tmp
111         mv $@-tmp $@