Deleted Added
sdiff udiff text old ( 289846 ) new ( 289870 )
full compact
1#################################################################
2#
3# Generate crunched binaries using crunchgen(1).
4#
5# General notes:
6#
7# A number of Make variables are used to generate the crunchgen config file.
8#
9# CRUNCH_SRCDIRS: lists directories to search for included programs
10# CRUNCH_PROGS: lists programs to be included
11# CRUNCH_LIBS: libraries to statically link with
12# CRUNCH_SHLIBS: libraries to dynamically link with

--- 9 unchanged lines hidden (view full) ---

22# By default, any name appearing in CRUNCH_PROGS or CRUNCH_ALIAS_${P}
23# will be used to generate a hard link to the resulting binary.
24# Specific links can be suppressed by setting
25# CRUNCH_SUPPRESS_LINK_${NAME} to 1.
26#
27# If CRUNCH_GENERATE_LINKS is set to no, no links will be generated.
28#
29
30# $FreeBSD: head/share/mk/bsd.crunchgen.mk 289870 2015-10-24 04:55:17Z bdrewery $
31
32##################################################################
33# The following is pretty nearly a generic crunchgen-handling makefile
34#
35
36CONF= ${PROG}.conf
37OUTMK= ${PROG}.mk
38OUTC= ${PROG}.c

--- 118 unchanged lines hidden ---