diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2007-04-16 21:20:26 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2007-04-16 21:20:26 +0000 |
commit | 5941f0355c3eaaa03032e0d8511c9a35ba14cd15 (patch) | |
tree | 96b513e188e12d0119ea9cb2b351ff665a33a9f9 /cddl/lib/libavl | |
parent | 2248f68064bc9f4967841ac1d9672b843e48b8a8 (diff) | |
download | src-5941f0355c3eaaa03032e0d8511c9a35ba14cd15.tar.gz src-5941f0355c3eaaa03032e0d8511c9a35ba14cd15.zip |
Apply a set of style.Makefile(5) changes to src/cddl/ makefiles.
There are some insignificant non-style changes as well.
Not fixed: makefiles use ${LIBTHR} that doesn't exist, thus
breaking "make checkdpadd" and not tracking dependencies
properly.
Approved by: pjd
Notes
Notes:
svn path=/head/; revision=168792
Diffstat (limited to 'cddl/lib/libavl')
-rw-r--r-- | cddl/lib/libavl/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/cddl/lib/libavl/Makefile b/cddl/lib/libavl/Makefile index b7283bd62f22..2fd2262099dc 100644 --- a/cddl/lib/libavl/Makefile +++ b/cddl/lib/libavl/Makefile @@ -1,13 +1,10 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../../sys/contrib/opensolaris/common/avl +.PATH: ${.CURDIR}/../../../sys/contrib/opensolaris/common/avl LIB= avl -SHLIB_MAJOR?=1 - SRCS= avl.c - -CFLAGS+=-I${.CURDIR}/../../../sys/compat/opensolaris -CFLAGS+=-I${.CURDIR}/../../../sys/contrib/opensolaris/uts/common +CFLAGS+= -I${.CURDIR}/../../../sys/compat/opensolaris +CFLAGS+= -I${.CURDIR}/../../../sys/contrib/opensolaris/uts/common .include <bsd.lib.mk> |