blob: a7cf2a369a25945c6dbbc5eed20139a33278ee09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
include $(srcdir)/mk/buildopts.mk
test_vars := \
DEB_BUILD_OPTION_PARALLEL \
# EOL
test: $(test_vars)
$(test_vars):
: # Test the $@ Make variable.
test '$($@)' = '$(TEST_$@)'
|