13 lines
216 B
Makefile
13 lines
216 B
Makefile
|
#
|
||
|
# arch/cris/boot/Makefile
|
||
|
#
|
||
|
|
||
|
zImage: compressed/vmlinuz
|
||
|
|
||
|
compressed/vmlinuz: $(TOPDIR)/vmlinux
|
||
|
@$(MAKE) -C compressed vmlinuz
|
||
|
|
||
|
clean:
|
||
|
rm -f zImage tools/build compressed/vmlinux.out
|
||
|
@$(MAKE) -C compressed clean
|