summaryrefslogtreecommitdiffstats
path: root/rules/post/ptx_oldconfig.make
blob: 9bc8c5de3482a4f106409014f77c594b7f21a96d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*-makefile-*-

#
# ptx_oldconfig
#
# execute "make oldconfig" on a programm. Mainly used for
# kconfig based packages.
#
define ptx/oldconfig
	cd "$($(strip $(1))_DIR)" && $($(strip $(1))_PATH) $($(strip $(1))_ENV) $(MAKE)	\
		$(filter-out --output-sync%,$($(strip $(1))_MAKEVARS) $($(strip $(1))_MAKE_OPT)) oldconfig
endef

# vim: syntax=make