Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions make.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,14 +174,7 @@ clean_scores.csv: raw_scores.csv
edit raw_scores.csv | format > clean_scores.csv
```

Since our cleaning process is identical for both of these rules, we can collapse them using a pattern rule:

```
clean_%.csv: raw_%.csv
edit raw_%.csv | format > clean_%.csv
```

Note that we can simplify this even further using automatic variables:
Since our cleaning process is identical for both of these rules, we can collapse them using a pattern rule and automatic variables:

```
clean_%.csv: raw_%.csv
Expand Down