blob: 5e3ebeb782d8964a6efecda0ba9f4da8e8fedaf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: simple.mk,v 1.2 2005/05/31 13:33:39 dillo Exp $
#
# This file tests a very simple options configuration.
#
MAKECONF= /dev/null
PKG_SUPPORTED_OPTIONS= a b c d e
PKG_SUGGESTED_OPTIONS= b c e
PKG_OPTIONS_VAR= PKG_OPTIONS.unused
.include "../../mk/bsd.options.mk"
.PHONY: test
test:
echo ${PKG_OPTIONS:M*:Q}
|