diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-07-21 20:25:10 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-07-21 20:25:10 +0000 |
commit | a14aa9c7bb450c30a87620e604da414411b72cb9 (patch) | |
tree | b6a1975a7caf3213d1a7682671efe1a6bceac1a9 /lib | |
parent | eb79d1e165fb863a41b6a1f70b7cf128f116e1d7 (diff) |
build ftw and nftw
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gen/Makefile.inc | 39 |
1 files changed, 21 insertions, 18 deletions
diff --git a/lib/libc/gen/Makefile.inc b/lib/libc/gen/Makefile.inc index 2508d80174d..8e58cb96e45 100644 --- a/lib/libc/gen/Makefile.inc +++ b/lib/libc/gen/Makefile.inc @@ -1,24 +1,26 @@ -# $OpenBSD: Makefile.inc,v 1.34 2002/10/16 16:10:24 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.35 2003/07/21 20:25:09 millert Exp $ # gen sources .PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/gen ${LIBCSRCDIR}/gen -SRCS+= alarm.c assert.c auth_subr.c authenticate.c login_cap.c basename.c \ - clock.c closedir.c confstr.c ctermid.c ctype_.c daemon.c \ - devname.c dirname.c disklabel.c elf_hash.c err.c errx.c errlist.c \ - errno.c exec.c fnmatch.c fstab.c ftok.c fts.c getbsize.c getcap.c \ - getcwd.c getdomainname.c getgrent.c getgrouplist.c gethostname.c \ - getloadavg.c getlogin.c getmntinfo.c getnetgrent.c getpagesize.c \ - getpwent.c getttyent.c getusershell.c glob.c initgroups.c isatty.c \ - isctype.c isfdtype.c lockf.c login_cap.c nice.c nlist.c opendir.c \ - pause.c popen.c psignal.c pw_dup.c pwcache.c raise.c readdir.c \ - readpassphrase.c rewinddir.c scandir.c seekdir.c setdomainname.c \ - sethostname.c setjmperr.c setmode.c setproctitle.c siginterrupt.c \ - siglist.c signal.c signame.c sigsetops.c sleep.c strtofflags.c \ - sysconf.c sysctl.c syslog.c telldir.c time.c times.c timezone.c \ - tolower_.c ttyname.c ttyslot.c toupper_.c ualarm.c uname.c unvis.c \ - usleep.c utime.c valloc.c vis.c wait.c wait3.c waitpid.c warn.c \ - warnx.c vwarn.c vwarnx.c verr.c verrx.c +SRCS+= alarm.c assert.c auth_subr.c authenticate.c login_cap.c \ + basename.c clock.c closedir.c confstr.c ctermid.c ctype_.c \ + daemon.c devname.c dirname.c disklabel.c elf_hash.c err.c \ + errx.c errlist.c errno.c exec.c fnmatch.c fstab.c ftok.c \ + fts.c ftw.c getbsize.c getcap.c getcwd.c getdomainname.c \ + getgrent.c getgrouplist.c gethostname.c getloadavg.c \ + getlogin.c getmntinfo.c getnetgrent.c getpagesize.c getpwent.c \ + getttyent.c getusershell.c glob.c initgroups.c isatty.c \ + isctype.c isfdtype.c lockf.c login_cap.c nice.c nlist.c \ + nftw.c opendir.c pause.c popen.c psignal.c pw_dup.c pwcache.c \ + raise.c readdir.c readpassphrase.c rewinddir.c scandir.c \ + seekdir.c setdomainname.c sethostname.c setjmperr.c setmode.c \ + setproctitle.c siginterrupt.c siglist.c signal.c signame.c \ + sigsetops.c sleep.c strtofflags.c sysconf.c sysctl.c syslog.c \ + telldir.c time.c times.c timezone.c tolower_.c ttyname.c \ + ttyslot.c toupper_.c ualarm.c uname.c unvis.c usleep.c \ + utime.c valloc.c vis.c wait.c wait3.c waitpid.c warn.c \ + warnx.c vwarn.c vwarnx.c verr.c verrx.c # indirect reference stubs, to be removed soon. SRCS+= _sys_errlist.c _sys_nerr.c _sys_siglist.c @@ -44,7 +46,7 @@ errlst.o errlst.po: MAN+= alarm.3 auth_subr.3 authenticate.3 basename.3 clock.3 confstr.3 \ ctermid.3 ctype.3 daemon.3 devname.3 directory.3 dirname.3 err.3 \ - exec.3 fnmatch.3 fpgetmask.3 frexp.3 ftok.3 fts.3 getbsize.3 \ + exec.3 fnmatch.3 fpgetmask.3 frexp.3 ftok.3 fts.3 ftw.3 getbsize.3 \ getcap.3 getcwd.3 getdomainname.3 getdiskbyname.3 getfsent.3 \ getgrent.3 getgrouplist.3 gethostname.3 getloadavg.3 getmntinfo.3 \ getnetgrent.3 getpagesize.3 getpass.3 getpwent.3 getttyent.3 \ @@ -85,6 +87,7 @@ MLINKS+=fpgetmask.3 fpgetround.3 fpgetmask.3 fpgetsticky.3 \ fpgetmask.3 fpsetsticky.3 MLINKS+=fts.3 fts_open.3 fts.3 fts_read.3 fts.3 fts_children.3 \ fts.3 fts_set.3 fts.3 fts_close.3 +MLINKS+=ftw.3 nftw.3 MLINKS+=isinf.3 isnan.3 isinf.3 isnanf.3 isinf.3 isinff.3 MLINKS+=getcap.3 cgetcap.3 getcap.3 cgetclose.3 getcap.3 cgetent.3 \ getcap.3 cgetfirst.3 getcap.3 cgetmatch.3 getcap.3 cgetnext.3 \ |