Revision 1614
Added by Aaron Marcuse-Kubitza almost 13 years ago
inputs/input.Makefile | ||
---|---|---|
68 | 68 |
clean: _always |
69 | 69 |
$(RM) $(all) |
70 | 70 |
|
71 |
%.out: %.make _always
|
|
71 |
%: %.make _always |
|
72 | 72 |
./$* >$@ |
73 | 73 |
|
74 | 74 |
%/: % _always ; |
Also available in: Unified diff
input.Makefile: Changed "%.out: .make" rule to ": %.make" so that any file can be built from a corresponding .make file. This will allow flat files to be retrieved dynamically by running an associated .make file.