blob: e5b105851108999126ba802426869dbc54dd2714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# arch/cris/boot/Makefile
#
target = $(target_boot_dir)
src = $(src_boot_dir)
zImage: compressed/vmlinuz
compressed/vmlinuz:
@$(MAKE) -f $(src)/compressed/Makefile $(target_compressed_dir)/vmlinuz
clean:
@$(MAKE) -f $(src)/compressed/Makefile clean
|