25faff346c
Prefer MACHNE_CPUARCH to MACHINE_ARCH in most contexts where you want to test of all the CPUs of a given family conform.
20 lines
337 B
Makefile
20 lines
337 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/arch/${MACHINE_CPUARCH}
|
|
|
|
LIB= thread_db
|
|
SHLIB_MAJOR= 3
|
|
SRCS= thread_db.c
|
|
SRCS+= libpthread_md.c
|
|
SRCS+= libpthread_db.c
|
|
SRCS+= libthr_db.c
|
|
INCS= thread_db.h
|
|
|
|
CFLAGS+=-I. -I${.CURDIR}
|
|
SYM_MAPS+=${.CURDIR}/Symbol.map
|
|
|
|
SYMBOL_MAPS=${SYM_MAPS}
|
|
VERSION_DEF=${.CURDIR}/../libc/Versions.def
|
|
|
|
.include <bsd.lib.mk>
|