]> git.ipfire.org Git - thirdparty/glibc.git/blob - posix/Makefile
Wed Jan 24 04:18:36 1996 Paul Eggert <eggert@twinsun.com>
[thirdparty/glibc.git] / posix / Makefile
1 # Copyright (C) 1991, 92, 93, 94, 95, 96 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
16 # not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 # Cambridge, MA 02139, 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
29 distribute := confstr.h
30
31 routines := \
32 uname \
33 times \
34 wait waitpid wait3 wait4 \
35 alarm sleep pause \
36 fork vfork _exit \
37 execve fexecve execv execle execl execvp execlp \
38 getpid getppid \
39 getuid geteuid getgid getegid getgroups setuid setgid group_member \
40 getpgid setpgid getpgrp getsid setsid \
41 getlogin setlogin \
42 pathconf sysconf fpathconf \
43 glob fnmatch regex \
44 confstr \
45 getopt getopt1
46 aux := init-posix environ
47 tests := tstgetopt testfnm
48 others := getconf
49 install-bin := getconf
50 install-lib := libposix.a
51 gpl2lgpl := getopt.c getopt1.c getopt.h regex.c regex.h
52
53 include ../Rules
54
55 CFLAGS-regex.c = -Wno-unused -Wno-strict-prototypes
56
57 $(objpfx)libposix.a: $(dep-dummy-lib); $(make-dummy-lib)
58 lib: $(objpfx)libposix.a
59 \f
60 # Make the standalone glob/fnmatch package.
61
62 glob.tar: glob/ChangeLog glob/COPYING.LIB \
63 glob/Makefile.in glob/configure glob/configure.in glob/configure.bat\
64 glob/fnmatch.h glob/glob.h glob/fnmatch.c glob/glob.c
65 tar cho$(verbose)f $@ $^
66 glob/%.c: %.c
67 rm -f $@
68 ln -s ../$< $@
69 glob/%.h: %.h
70 rm -f $@
71 ln -s ../$< $@
72
73 glob/configure: glob/configure.in
74 cd glob; autoconf $(ACFLAGS)
75 test ! -d CVS || cvs commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
76
77 glob/ChangeLog: ../ChangeLog
78 changelog-extract --regexp 'posix/(glob|fnmatch).*' < $< > $@.new
79 chmod a-w $@.new
80 mv -f $@.new $@
81 test ! -d CVS || cvs commit -mRegenerated $@
82
83 %.Z: %
84 compress -c $< > $@-tmp
85 mv $@-tmp $@
86 %.gz: %
87 gzip -9v -c $< > $@-tmp
88 mv $@-tmp $@