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