diff options
author | marcel <marcel@FreeBSD.org> | 2003-06-23 04:28:31 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2003-06-23 04:28:31 +0000 |
commit | 8ff698074b7df9fc10cd5c9b514c9ff77d69d2dc (patch) | |
tree | cba0fc10183a796b368196a025bc54f119e98d68 /lib/libkse/Makefile | |
parent | f749ae2faa23bd75c9842fe76ab3c84f83dd23a7 (diff) | |
download | FreeBSD-src-8ff698074b7df9fc10cd5c9b514c9ff77d69d2dc.zip FreeBSD-src-8ff698074b7df9fc10cd5c9b514c9ff77d69d2dc.tar.gz |
Move the machine specific files from sys/Makefile.inc and put them
in a machine specific makefile. While here, sort the sub-directories
in Makefile and remove _atomic_lock.S from all makefiles.
Diffstat (limited to 'lib/libkse/Makefile')
-rw-r--r-- | lib/libkse/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libkse/Makefile b/lib/libkse/Makefile index c25ccf4..497179e 100644 --- a/lib/libkse/Makefile +++ b/lib/libkse/Makefile @@ -30,8 +30,9 @@ CFLAGS+=-D_PTHREADS_INVARIANTS -Wall AINC= -I${.CURDIR}/../libc/${MACHINE_ARCH} -I${.CURDIR}/thread PRECIOUSLIB= yes -.include "${.CURDIR}/thread/Makefile.inc" -.include "${.CURDIR}/sys/Makefile.inc" +.include "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc" .include "${.CURDIR}/support/Makefile.inc" +.include "${.CURDIR}/sys/Makefile.inc" +.include "${.CURDIR}/thread/Makefile.inc" .include <bsd.lib.mk> |