Revision 1274
Added by Aaron Marcuse-Kubitza almost 13 years ago
input.Makefile | ||
---|---|---|
54 | 54 |
clean: _always |
55 | 55 |
$(RM) $(all) |
56 | 56 |
|
57 |
remake: _always clean all ; |
|
58 |
|
|
59 | 57 |
%.out: %.make _always |
60 | 58 |
./$* >$@ |
61 | 59 |
|
Also available in: Unified diff
Makefiles: Moved remake into main Makefile. Fixed remake to run `make all` in a new make so that cache of existing files is reset. Have main remake run clean and then all instead of forwarding remake to subdirs, so that everything is cleaned before everything is remade.