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 13# CRUNCH_BUILDOPTS: generic build options to be added to every program 14# CRUNCH_BUILDTOOLS: lists programs that need build tools built in the 15# local architecture. 16# 17# Special options can be specified for individual programs 18# CRUNCH_SRCDIR_${P}: base source directory for program ${P} 19# CRUNCH_BUILDOPTS_${P}: additional build options for ${P} 20# CRUNCH_ALIAS_${P}: additional names to be used for ${P} 21# 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$ 31 32################################################################## 33# The following is pretty nearly a generic crunchgen-handling makefile 34# 35 36CONF= ${PROG}.conf 37OUTMK= ${PROG}.mk 38OUTC= ${PROG}.c 39OUTPUTS=${OUTMK} ${OUTC} ${PROG}.cache 40CRUNCHOBJS= ${.OBJDIR} 41CRUNCH_GENERATE_LINKS?= yes 42# Don't let the prog.mk use MK_AUTO_OBJ, but do let the component builds use 43# it. 44CRUNCHARGS+= MK_AUTO_OBJ=no 45CRUNCH_BUILDOPTS+= MK_AUTO_OBJ=${MK_AUTO_OBJ} 46 47CLEANFILES+= ${CONF} *.o *.lo *.c *.mk *.cache *.a *.h 48 49# Don't try to extract debug info from ${PROG}. 50MK_DEBUG_FILES= no 51 52# Set a default SRCDIR for each for simpler handling below. 53.for D in ${CRUNCH_SRCDIRS} 54.for P in ${CRUNCH_PROGS_${D}} 55CRUNCH_SRCDIR_${P}?= ${.CURDIR}/../../${D}/${P} 56.endfor 57.endfor 58 59# Program names and their aliases contribute hardlinks to 'rescue' executable, 60# except for those that get suppressed. 61.for D in ${CRUNCH_SRCDIRS} 62.for P in ${CRUNCH_PROGS_${D}} 63${OUTPUTS}: ${CRUNCH_SRCDIR_${P}}/Makefile 64.if ${CRUNCH_GENERATE_LINKS} == "yes" 65.ifndef CRUNCH_SUPPRESS_LINK_${P} 66LINKS+= ${BINDIR}/${PROG} ${BINDIR}/${P} 67.endif 68.for A in ${CRUNCH_ALIAS_${P}} 69.ifndef CRUNCH_SUPPRESS_LINK_${A} 70LINKS+= ${BINDIR}/${PROG} ${BINDIR}/${A} 71.endif 72.endfor 73.endif 74.endfor 75.endfor 76 77.if !defined(_SKIP_BUILD) 78all: ${PROG} 79.endif 80exe: ${PROG} 81 82${CONF}: Makefile 83 echo \# Auto-generated, do not edit >${.TARGET} 84.ifdef CRUNCH_BUILDOPTS 85 echo buildopts ${CRUNCH_BUILDOPTS} >>${.TARGET} 86.endif 87.ifdef CRUNCH_LIBS 88 echo libs ${CRUNCH_LIBS} >>${.TARGET} 89.endif 90.ifdef CRUNCH_SHLIBS 91 echo libs_so ${CRUNCH_SHLIBS} >>${.TARGET} 92.endif 93.for D in ${CRUNCH_SRCDIRS} 94.for P in ${CRUNCH_PROGS_${D}} 95 echo progs ${P} >>${.TARGET} 96 echo special ${P} srcdir ${CRUNCH_SRCDIR_${P}} >>${.TARGET} 97.ifdef CRUNCH_BUILDOPTS_${P} 98 echo special ${P} buildopts DIRPRFX=${DIRPRFX}${P}/ \ 99 ${CRUNCH_BUILDOPTS_${P}} >>${.TARGET} 100.else 101 echo special ${P} buildopts DIRPRFX=${DIRPRFX}${P}/ >>${.TARGET} 102.endif 103.ifdef CRUNCH_LIBS_${P} 104 echo special ${P} lib ${CRUNCH_LIBS_${P}} >>${.TARGET} 105.endif 106.for A in ${CRUNCH_ALIAS_${P}} 107 echo ln ${P} ${A} >>${.TARGET} 108.endfor 109.endfor 110.endfor 111 112CRUNCHGEN?= crunchgen 113CRUNCHENV+= MK_TESTS=no \ 114 UPDATE_DEPENDFILE=no \ 115 _RECURSING_CRUNCH=1 116.ORDER: ${OUTPUTS} objs 117${OUTPUTS:[1]}: .META 118${OUTPUTS:[2..-1]}: .NOMETA 119${OUTPUTS}: ${CONF} 120 MAKE="${MAKE}" ${CRUNCHENV} MAKEOBJDIRPREFIX=${CRUNCHOBJS} \ 121 MK_AUTO_OBJ=${MK_AUTO_OBJ} \ 122 ${CRUNCHGEN} -fq -m ${OUTMK} -c ${OUTC} ${CONF} 123 # Avoid redundantly calling 'make objs' which we've done by our 124 # own dependencies. 125 # Also avoid unneeded 'make depend' call. 126 sed -i '' \ 127 -e "s/^\(${PROG}:.*\) \$$(SUBMAKE_TARGETS)/\1/" \ 128 -e '/$$(CRUNCHMAKE) $$(BUILDOPTS).* \<depend\> &&.*/d' \ 129 ${OUTMK} 130 131# These 2 targets cannot use .MAKE since they depend on the generated 132# ${OUTMK} above. 133${PROG}: ${OUTPUTS} objs .NOMETA .PHONY 134 ${CRUNCHENV} \ 135 CC="${CC} ${CFLAGS} ${LDFLAGS}" \ 136 CXX="${CXX} ${CXXFLAGS} ${LDFLAGS}" \ 137 ${MAKE} ${CRUNCHARGS} .MAKE.MODE="${.MAKE.MODE} curdirOk=yes" \ 138 .MAKE.META.IGNORE_PATHS="${.MAKE.META.IGNORE_PATHS}" \ 139 -f ${OUTMK} exe 140 141objs: ${OUTMK} .META 142 ${CRUNCHENV} MAKEOBJDIRPREFIX=${CRUNCHOBJS} \ 143 ${MAKE} -f ${OUTMK} ${CRUNCHARGS} BUILD_TOOLS_META=.NOMETA objs 144 145# <sigh> Someone should replace the bin/csh and bin/sh build-tools with 146# shell scripts so we can remove this nonsense. 147.for _tool in ${CRUNCH_BUILDTOOLS} 148build-tools-${_tool}: 149 ${_+_}cd ${.CURDIR}/../../${_tool}; \ 150 if [ "${MK_AUTO_OBJ}" = "no" ]; then \ 151 ${CRUNCHENV} MAKEOBJDIRPREFIX=${CRUNCHOBJS} ${MAKE} obj; \ 152 fi; \ 153 ${CRUNCHENV} MAKEOBJDIRPREFIX=${CRUNCHOBJS} ${MAKE} build-tools 154build-tools: build-tools-${_tool} 155.endfor 156 157# Use a separate build tree to hold files compiled for this crunchgen binary 158# Yes, this does seem to partly duplicate bsd.subdir.mk, but I can't 159# get that to cooperate with bsd.prog.mk. Besides, many of the standard 160# targets should NOT be propagated into the components. 161.if ${MK_AUTO_OBJ} == "no" 162_obj= obj 163.endif 164.for __target in clean cleandepend cleandir ${_obj} objlink 165.for D in ${CRUNCH_SRCDIRS} 166.for P in ${CRUNCH_PROGS_${D}} 167${__target}_crunchdir_${P}: .PHONY .MAKE 168 ${_+_}cd ${CRUNCH_SRCDIR_${P}} && \ 169 ${CRUNCHENV} MAKEOBJDIRPREFIX=${CANONICALOBJDIR} ${MAKE} \ 170 ${CRUNCHARGS} \ 171 DIRPRFX=${DIRPRFX}${P}/ ${CRUNCH_BUILDOPTS} \ 172 ${CRUNCH_BUILDOPTS_${P}} ${__target} 173${__target}: ${__target}_crunchdir_${P} 174.endfor 175.endfor 176.endfor 177 178clean: 179 rm -f ${CLEANFILES} 180 ${_+_}if [ -e ${.OBJDIR}/${OUTMK} ]; then \ 181 ${CRUNCHENV} MAKEOBJDIRPREFIX=${CRUNCHOBJS} ${MAKE} \ 182 -f ${OUTMK} clean; \ 183 fi 184 185META_XTRAS+= ${find ${CRUNCHOBJS}${SRCTOP} -name '*.meta' 2>/dev/null || true:L:sh} 186META_XTRAS+= ${echo ${CRUNCHOBJS}/*.lo.meta 2>/dev/null || true:L:sh} 187META_XTRAS+= ${PROG}.meta 188