e754c6bbb7
conversion routine, now change my mind and add one, memstat_strerror(3), which returns a const char * pointer to a string describing the error, to be used on the results of memstat_mtl_geterror(). While here, also correct a minor typo in the HISTORY man page. Pointers on improving ease of internationalization would be appreciated. MFC after: 1 day
26 lines
626 B
Makefile
26 lines
626 B
Makefile
# $FreeBSD$
|
|
|
|
WARNS?= 3
|
|
LIB= memstat
|
|
SHLIB_MAJOR= 1
|
|
SRCS+= memstat.c
|
|
SRCS+= memstat_all.c
|
|
SRCS+= memstat_malloc.c
|
|
SRCS+= memstat_uma.c
|
|
INCS= memstat.h
|
|
|
|
MAN= libmemstat.3
|
|
|
|
MLINKS+= libmemstat.3 memstat_mtl_alloc.3
|
|
MLINKS+= libmemstat.3 memstat_mtl_first.3
|
|
MLINKS+= libmemstat.3 memstat_mtl_next.3
|
|
MLINKS+= libmemstat.3 memstat_mtl_find.3
|
|
MLINKS+= libmemstat.3 memstat_mtl_free.3
|
|
MLINKS+= libmemstat.3 memstat_mtl_geterror.3
|
|
MLINKS+= libmemstat.3 memstat_strerror.3
|
|
MLINKS+= libmemstat.3 memstat_sysctl_all.3
|
|
MLINKS+= libmemstat.3 memstat_sysctl_malloc.3
|
|
MLINKS+= libmemstat.3 memstat_sysctl_uma.3
|
|
|
|
.include <bsd.lib.mk>
|