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
| @@ -29,6 +29,8 @@ OBJS+= lsi53c895a.o esp.o | @@ -29,6 +29,8 @@ OBJS+= lsi53c895a.o esp.o | ||
| 29 | OBJS+= dma-helpers.o sysbus.o | 29 | OBJS+= dma-helpers.o sysbus.o |
| 30 | 30 | ||
| 31 | all: $(HWLIB) | 31 | all: $(HWLIB) |
| 32 | +# Dummy command so that make thinks it has done something | ||
| 33 | + @true | ||
| 32 | 34 | ||
| 33 | $(HWLIB): $(OBJS) | 35 | $(HWLIB): $(OBJS) |
| 34 | 36 |
Makefile.target
| @@ -128,6 +128,8 @@ kvm.o: CFLAGS+=$(KVM_CFLAGS) | @@ -128,6 +128,8 @@ kvm.o: CFLAGS+=$(KVM_CFLAGS) | ||
| 128 | kvm-all.o: CFLAGS+=$(KVM_CFLAGS) | 128 | kvm-all.o: CFLAGS+=$(KVM_CFLAGS) |
| 129 | 129 | ||
| 130 | all: $(PROGS) | 130 | all: $(PROGS) |
| 131 | +# Dummy command so that make thinks it has done something | ||
| 132 | + @true | ||
| 131 | 133 | ||
| 132 | ######################################################### | 134 | ######################################################### |
| 133 | # cpu emulator library | 135 | # cpu emulator library |