diff options
Diffstat (limited to 'arch/microblaze/Makefile')
-rw-r--r-- | arch/microblaze/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/microblaze/Makefile b/arch/microblaze/Makefile index 592c7079de88..b07d990bbed8 100644 --- a/arch/microblaze/Makefile +++ b/arch/microblaze/Makefile | |||
@@ -72,12 +72,16 @@ export MMU DTB | |||
72 | 72 | ||
73 | all: linux.bin | 73 | all: linux.bin |
74 | 74 | ||
75 | BOOT_TARGETS = linux.bin linux.bin.gz simpleImage.% | 75 | # With make 3.82 we cannot mix normal and wildcard targets |
76 | BOOT_TARGETS1 = linux.bin linux.bin.gz | ||
77 | BOOT_TARGETS2 = simpleImage.% | ||
76 | 78 | ||
77 | archclean: | 79 | archclean: |
78 | $(Q)$(MAKE) $(clean)=$(boot) | 80 | $(Q)$(MAKE) $(clean)=$(boot) |
79 | 81 | ||
80 | $(BOOT_TARGETS): vmlinux | 82 | $(BOOT_TARGETS1): vmlinux |
83 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ | ||
84 | $(BOOT_TARGETS2): vmlinux | ||
81 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ | 85 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
82 | 86 | ||
83 | define archhelp | 87 | define archhelp |