Added more controller IDs.
[AROS.git] / tools / MetaMake / DemoMMFile
blob0dd951ae078a50ac707d20a92b2a81d8ffd70b87
1 # This is an example MetaMake file
3 # Thess are lines which MetaMake will examine. The rest of the file is
4 # ignored. The '-' means that Demo is a virtual target (ie. one which
5 # doesn't exist in the makefile and for which MetaMake mustn't call
6 # the maketool). The '\' at the end of the line means that this rule
7 # is continued on the next line which must start with #MM.
8 #MM- Demo : all \
9 #MM         print
11 # This is a short-cut: MetaMake will read the next line and use the
12 # target there as the name of a MetaTarget. Note that all depends on
13 # real-target which MetaMake will ignore; even if real-target exists
14 # as a MetaTarget, it won't be considered when MetaMake wants to build
15 # "all" in this directory.
16 #MM
17 all : real-target
19 # MetaMake will print a warning for the non-existing-target.
20 #MM print : non-existing-target
21 print :
22         echo Done.
24 # This is a real target which MetaMake ignores.
25 real-target :
26         echo Real target.