Revision 1274
Added by Aaron Marcuse-Kubitza almost 13 years ago
Makefile | ||
---|---|---|
20 | 20 |
clean: _always |
21 | 21 |
$(RM) $(all) |
22 | 22 |
|
23 |
remake: _always clean all ; |
|
24 |
|
|
25 | 23 |
%:: %.make |
26 | 24 |
./$< >$@ |
27 | 25 |
|
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.