summaryrefslogtreecommitdiffstats
path: root/config/pkg.mk
blob: 6f868beec82088e57717489a01f00c5a7fd2456a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright © Tavian Barnes <tavianator@tavianator.com>
# SPDX-License-Identifier: 0BSD

# Makefile that generates gen/lib*.mk

include config/prelude.mk
include ${GEN}/vars.mk
include ${GEN}/flags.mk
include config/exports.mk

# Like ${TGT} but for ${TARGET}, not $@
SHORT = ${TARGET:${BUILDDIR}/%=%}

default::
	@printf '# %s\n' "${SHORT}" >${TARGET}
	config/pkg.sh ${TARGET:${GEN}/%.mk=%} >>${TARGET} 2>${TARGET}.log
	@if [ "${IS_V}" ]; then \
	    cat ${TARGET}; \
	elif grep -q PKGS ${TARGET}; then \
	    printf '[ GEN] %-18s  ✔\n' ${SHORT}; \
	else \
	    printf '[ GEN] %-18s  ✘\n' ${SHORT}; \
	fi