daaf575910
Similar to libexec/, do the same with lib/. Make WARNS=6 the norm and lower it when needed. I'm setting WARNS?=0 for secure/. It seems secure/ includes the Makefile.inc provided by lib/. I'm not going to touch that directory. Most of the code there is contributed anyway.
20 lines
334 B
Makefile
20 lines
334 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}
|
|
|
|
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>
|