New presentation and organization
This commit is contained in:
parent
018bae577a
commit
9731ba9a7a
24 changed files with 73 additions and 189 deletions
35
tests/Makefile.syntax-test
Normal file
35
tests/Makefile.syntax-test
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
SIMPLE_VAR = coucou
|
||||
SIMPLE_VAR_COMMENT = the comment is gone # comment
|
||||
|
||||
# the following line starts with a space then a tab
|
||||
SPACES_BEFORE_TAB = var_beginning var_end
|
||||
|
||||
sparse_rule: depa depb
|
||||
|
||||
command 1
|
||||
|
||||
command 2
|
||||
|
||||
B = B_var_beginning B_var_end
|
||||
|
||||
packed_rule: depa depb
|
||||
command 1
|
||||
command 2
|
||||
|
||||
silent_rule: depa depb
|
||||
@ command 1
|
||||
@command 2
|
||||
|
||||
rule_comment: depa depb # comment
|
||||
|
||||
command_space_rule: depa depb
|
||||
echo spaces before
|
||||
echo spaces after
|
||||
echo this is a # comment
|
||||
|
||||
simple_rule: simple_dep
|
||||
|
||||
no_dep_rule:
|
||||
|
||||
variable_rule: beginning $(SIMPLE_VAR) end
|
||||
echo "shouldn't be expanded: $(SIMPLE_VAR)"
|
||||
Loading…
Add table
Add a link
Reference in a new issue