mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 14:21:18 +01:00
2226d61047
Conflicts: bin/cat/cat.c (unresolved) lib/csu/aarch64/crt1_c.c (unresolved) lib/csu/amd64/crt1_c.c (unresolved) lib/csu/i386/crt1_c.c (unresolved) lib/csu/powerpc64/crt1_c.c (unresolved) lib/csu/powerpc64/reloc.c (unresolved) lib/csu/riscv/crt1_c.c (unresolved) lib/libc/gen/auxv.3 (unresolved) lib/libcasper/services/cap_net/cap_net.3 (unresolved) sys/amd64/amd64/elf_machdep.c (unresolved) sys/amd64/include/sgxreg.h (deleted) sys/amd64/linux/linux_sysvec.c (unresolved) sys/amd64/linux32/linux32_sysvec.c (unresolved) sys/amd64/sgx/sgx.c (deleted) sys/amd64/sgx/sgx_linux.c (deleted) sys/amd64/sgx/sgxvar.h (deleted) sys/arm/arm/elf_machdep.c (unresolved) sys/arm64/linux/linux_sysvec.c (unresolved) sys/compat/ia32/ia32_sysvec.c (unresolved) sys/compat/linux/linux_misc.c (unresolved) sys/i386/linux/imgact_linux.c (unresolved) sys/i386/linux/linux_sysvec.c (unresolved) sys/kern/imgact_aout.c (deleted) sys/kern/kern_environment.c (unresolved) sys/kern/kern_module.c (unresolved) sys/kern/kern_priv.c (unresolved) sys/kern/kern_resource.c (unresolved) sys/kern/sys_process.c (unresolved) sys/modules/aout/Makefile (deleted) sys/modules/sgx/Makefile (deleted) sys/modules/sgx_linux/Makefile (deleted) sys/netinet/ip_reass.c (unresolved) sys/riscv/riscv/elf_machdep.c (unresolved) sys/vm/vm_map.c (unresolved) sys/vm/vm_mmap.c (unresolved) tools/build/options/WITHOUT_KERNEL_RETPOLINE (deleted) tools/build/options/WITHOUT_LIB32 (deleted) tools/build/options/WITHOUT_PIE (deleted) tools/build/options/WITH_INIT_ALL_PATTERN (deleted) tools/build/options/WITH_INIT_ALL_ZERO (deleted) tools/build/options/WITH_KERNEL_RETPOLINE (deleted) tools/build/options/WITH_PIE (deleted) usr.sbin/newsyslog/newsyslog.conf.d/amd.conf (unresolved) usr.sbin/newsyslog/newsyslog.conf.d/lpr.conf (unresolved) usr.sbin/rpc.yppasswdd/Makefile (unresolved)
64 lines
1.4 KiB
Makefile
64 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2011/02/16 01:31:33 joerg Exp $
|
|
# $OpenBSD: Makefile,v 1.6 2003/06/25 15:00:04 millert Exp $
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE= runtime
|
|
|
|
PROG= grep
|
|
MAN1= grep.1 zgrep.1
|
|
|
|
SRCS= file.c grep.c queue.c util.c
|
|
|
|
SCRIPTS= zgrep.sh
|
|
LINKS= ${BINDIR}/zgrep ${BINDIR}/zfgrep \
|
|
${BINDIR}/zgrep ${BINDIR}/zegrep \
|
|
${BINDIR}/zgrep ${BINDIR}/bzgrep \
|
|
${BINDIR}/zgrep ${BINDIR}/bzegrep \
|
|
${BINDIR}/zgrep ${BINDIR}/bzfgrep \
|
|
${BINDIR}/zgrep ${BINDIR}/lzgrep \
|
|
${BINDIR}/zgrep ${BINDIR}/lzegrep \
|
|
${BINDIR}/zgrep ${BINDIR}/lzfgrep \
|
|
${BINDIR}/zgrep ${BINDIR}/xzgrep \
|
|
${BINDIR}/zgrep ${BINDIR}/xzegrep \
|
|
${BINDIR}/zgrep ${BINDIR}/xzfgrep \
|
|
${BINDIR}/zgrep ${BINDIR}/zstdgrep \
|
|
${BINDIR}/zgrep ${BINDIR}/zstdegrep \
|
|
${BINDIR}/zgrep ${BINDIR}/zstdfgrep
|
|
|
|
LINKS+= ${BINDIR}/grep ${BINDIR}/egrep \
|
|
${BINDIR}/grep ${BINDIR}/fgrep \
|
|
${BINDIR}/grep ${BINDIR}/rgrep \
|
|
|
|
MLINKS= zgrep.1 zfgrep.1 \
|
|
zgrep.1 zegrep.1 \
|
|
zgrep.1 bzgrep.1 \
|
|
zgrep.1 bzegrep.1 \
|
|
zgrep.1 bzfgrep.1 \
|
|
zgrep.1 lzgrep.1 \
|
|
zgrep.1 lzegrep.1 \
|
|
zgrep.1 lzfgrep.1 \
|
|
zgrep.1 xzgrep.1 \
|
|
zgrep.1 xzegrep.1 \
|
|
zgrep.1 xzfgrep.1 \
|
|
zgrep.1 zstdgrep.1 \
|
|
zgrep.1 zstdegrep.1 \
|
|
zgrep.1 zstdfgrep.1
|
|
|
|
MLINKS+= grep.1 egrep.1 \
|
|
grep.1 fgrep.1 \
|
|
grep.1 rgrep.1
|
|
|
|
CFLAGS.gcc+= --param max-inline-insns-single=500
|
|
|
|
.if !defined(BOOTSTRAPPING)
|
|
LIBADD+= regex
|
|
.endif
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
NOCFI= yes
|
|
|
|
.include <bsd.prog.mk>
|