blob: 34d6bb8e4691632ae5fdbdacd21698c591f63dfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: helper.mk,v 1.1 2023/07/05 22:42:46 riastradh Exp $
# Makefile fragment for building a helper library used by ld.elf_so
# tests. All we need to install is lib${LIB}.so and lib${LIB}.so.1.
# No man page, no lint library, no static libraries of any sort.
LIBDIR?= ${TESTSBASE}/libexec/ld.elf_so
SHLIBDIR?= ${TESTSBASE}/libexec/ld.elf_so
SHLIB_MAJOR?= 1
NODEBUGLIB= # defined
NOLINT= # defined
NOMAN= # defined
NOPICINSTALL= # defined
NOPROFILE= # defined
NOSTATICLIB= # defined
.include <bsd.lib.mk>
|