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/libpthread/arch | |
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/libpthread/arch')
-rw-r--r-- | lib/libpthread/arch/alpha/Makefile.inc | 5 | ||||
-rw-r--r-- | lib/libpthread/arch/i386/Makefile.inc | 5 | ||||
-rw-r--r-- | lib/libpthread/arch/ia64/Makefile.inc | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/lib/libpthread/arch/alpha/Makefile.inc b/lib/libpthread/arch/alpha/Makefile.inc new file mode 100644 index 0000000..98e32eb --- /dev/null +++ b/lib/libpthread/arch/alpha/Makefile.inc @@ -0,0 +1,5 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/${MACHINE_ARCH} + +SRCS+= ksd.c thr_enter_uts.S thr_getcontext.S thr_switch.S diff --git a/lib/libpthread/arch/i386/Makefile.inc b/lib/libpthread/arch/i386/Makefile.inc new file mode 100644 index 0000000..98e32eb --- /dev/null +++ b/lib/libpthread/arch/i386/Makefile.inc @@ -0,0 +1,5 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/${MACHINE_ARCH} + +SRCS+= ksd.c thr_enter_uts.S thr_getcontext.S thr_switch.S diff --git a/lib/libpthread/arch/ia64/Makefile.inc b/lib/libpthread/arch/ia64/Makefile.inc new file mode 100644 index 0000000..b3aafbd --- /dev/null +++ b/lib/libpthread/arch/ia64/Makefile.inc @@ -0,0 +1,5 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/${MACHINE_ARCH} + +SRCS+= ksd.c thr_enter_uts.S thr_switch.S |