diff options
author | ache <ache@FreeBSD.org> | 1996-10-09 16:12:38 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1996-10-09 16:12:38 +0000 |
commit | 05c321a078d6834d7f31b6405f597228546b67f3 (patch) | |
tree | db3b85a1a1dd248712f08ce86fdb4b62ad001034 /lib/libcompat | |
parent | c00dcd7b7aeb15d93f6f3a56b9f46d231bef265e (diff) | |
download | FreeBSD-src-05c321a078d6834d7f31b6405f597228546b67f3.zip FreeBSD-src-05c321a078d6834d7f31b6405f597228546b67f3.tar.gz |
Add orandom(), osrandom(), etc.
Diffstat (limited to 'lib/libcompat')
-rw-r--r-- | lib/libcompat/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/libcompat/Makefile b/lib/libcompat/Makefile index 8940719..54d56a9 100644 --- a/lib/libcompat/Makefile +++ b/lib/libcompat/Makefile @@ -1,7 +1,7 @@ # @(#)Makefile 8.1 (Berkeley) 6/4/93 LIB=compat -CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS +CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS -DCOMPAT_WEAK_SEEDING AINC= -I${.CURDIR}/../libc/${MACHINE} NOPIC= @@ -9,11 +9,15 @@ NOPIC= ${.CURDIR}/4.3/${MACHINE} ${.CURDIR}/4.3 \ ${.CURDIR}/4.4/${MACHINE} ${.CURDIR}/4.4 \ ${.CURDIR}/regexp \ - ${.CURDIR}/SysV + ${.CURDIR}/SysV \ + ${.CURDIR}/../libc/stdlib + +# will be removed with the next FreeBSD release +SRCS= random.c # compat 4.1 sources # XXX MISSING: tell.c vlimit.c vtimes.c -SRCS= ascftime.c cftime.c ftime.c getpw.c gtty.c stty.c +SRCS+= ascftime.c cftime.c ftime.c getpw.c gtty.c stty.c .if (${MACHINE} == "vax") SRCS+= reset.s |