d4ae754702d471e6032774c6a7d3a0d01ab67f43
[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 gnu/types.h getopt.h            \
26            posix1_lim.h posix2_lim.h posix_opt.h local_lim.h tar.h            \
27            utsnamelen.h confname.h waitflags.h waitstatus.h sys/unistd.h      \
28            sched.h schedbits.h re_comp.h wait.h
29
30 distribute := confstr.h
31
32 routines :=                                                                   \
33         uname                                                                 \
34         times                                                                 \
35         wait waitpid wait3 wait4                                              \
36         alarm sleep pause nanosleep                                           \
37         fork vfork _exit                                                      \
38         execve fexecve execv execle execl execvp execlp                       \
39         getpid getppid                                                        \
40         getuid geteuid getgid getegid getgroups setuid setgid group_member    \
41         getpgid setpgid getpgrp setpgrp getsid setsid                         \
42         getlogin getlogin_r setlogin                                          \
43         pathconf sysconf fpathconf                                            \
44         glob fnmatch regex                                                    \
45         confstr                                                               \
46         getopt getopt1 getopt_init                                            \
47         sched_setp sched_getp sched_sets sched_gets sched_yield sched_primax  \
48         sched_primin sched_rr_gi                                              \
49         getaddrinfo gai_strerror
50
51 aux             := init-posix environ
52 tests           := tstgetopt testfnm
53 others          := getconf
54 install-bin     := getconf
55 install-lib     := libposix.a
56 gpl2lgpl := getopt.c getopt1.c getopt.h regex.c regex.h
57
58 include ../Rules
59
60 CFLAGS-regex.c = -Wno-unused -Wno-strict-prototypes
61 CFLAGS-getaddrinfo.c = -DRESOLVER
62
63 $(objpfx)libposix.a: $(dep-dummy-lib); $(make-dummy-lib)
64 lib: $(objpfx)libposix.a
65 \f
66 # Make the standalone glob/fnmatch package.
67
68 glob.tar: glob/ChangeLog glob/COPYING.LIB \
69           glob/Makefile.in glob/configure glob/configure.in glob/configure.bat\
70           glob/SCOPTIONS glob/SMakefile glob/Makefile.ami \
71           glob/fnmatch.h glob/glob.h glob/fnmatch.c glob/glob.c
72         tar cho$(verbose)f $@ $^
73 glob/%.c: %.c
74         rm -f $@
75         ln -s ../$< $@
76 glob/%.h: %.h
77         rm -f $@
78         ln -s ../$< $@
79
80 glob/configure: glob/configure.in
81         cd glob; autoconf $(ACFLAGS)
82         test ! -d CVS || cvs commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
83
84 glob/ChangeLog: ../ChangeLog
85         changelog-extract --regexp 'posix/(glob|fnmatch).*' < $< > $@.new
86         chmod a-w $@.new
87         mv -f $@.new $@
88         test ! -d CVS || cvs commit -mRegenerated $@
89
90 %.Z: %
91         compress -c $< > $@-tmp
92         mv $@-tmp $@
93 %.gz: %
94         gzip -9v -c $< > $@-tmp
95         mv $@-tmp $@