summaryrefslogtreecommitdiff
path: root/mnv/runtime/syntax/testdir/input/make_01.mak
blob: e97c13c0aa09d72f6c88bb0fea19be5ddf56b8fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# comment

a = b
$(a) = 1

$(a)::
	@echo double-colon rule

$(a) += output

define say
	echo $1
endef

default:
	$(call say,"Hello (world)!")