Revision 6571
Added by Aaron Marcuse-Kubitza about 12 years ago
backups/Makefile | ||
---|---|---|
45 | 45 |
|
46 | 46 |
backups := $(wildcard *.backup) |
47 | 47 |
|
48 |
#### Checksums |
|
49 |
|
|
48 | 50 |
md5s: _always $(backups:%=%.md5) ; |
49 | 51 |
|
50 | 52 |
%.md5: % |
51 | 53 |
nice -n +5 md5sum $<|cut -d ' ' -f 1 >$@ |
52 | 54 |
|
55 |
#### SQL |
|
56 |
|
|
53 | 57 |
# Must come before %.sql with no prerequisites to be matched first |
54 | 58 |
%.sql: % |
55 | 59 |
$(restore) $< >$@ |
Also available in: Unified diff
backups/Makefile: Moved md5-related targets to separate Checksums section