8eb20f364f
* breakpoint setup support * register query * symbol to address mapping and vice-versa * more misc utility functions based on their Solaris counterpart Also, I've written some test cases. Sponsored by: The FreeBSD Foundation
21 lines
216 B
Makefile
21 lines
216 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= proc
|
|
|
|
SRCS= proc_bkpt.c \
|
|
proc_create.c \
|
|
proc_regs.c \
|
|
proc_sym.c \
|
|
proc_rtld.c \
|
|
proc_util.c
|
|
|
|
INCS= libproc.h
|
|
|
|
CFLAGS+= -I${.CURDIR}
|
|
|
|
SHLIB_MAJOR= 2
|
|
|
|
WITHOUT_MAN=
|
|
|
|
.include <bsd.lib.mk>
|