Commit c2fb26379e8bd0586f3ff054538217377f86635f
1 parent
3c80c6fe
Add dummy command to submakefiles
Add a dummy command to the all: rule in sub-makefiles. This avoids "Nothing to be done for `all'." messages from make. Signed-off-by: Paul Brook <paul@codesourcery.com>
Showing
2 changed files
with
4 additions
and
0 deletions
Makefile.hw
Makefile.target
... | ... | @@ -128,6 +128,8 @@ kvm.o: CFLAGS+=$(KVM_CFLAGS) |
128 | 128 | kvm-all.o: CFLAGS+=$(KVM_CFLAGS) |
129 | 129 | |
130 | 130 | all: $(PROGS) |
131 | +# Dummy command so that make thinks it has done something | |
132 | + @true | |
131 | 133 | |
132 | 134 | ######################################################### |
133 | 135 | # cpu emulator library | ... | ... |