You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
372 B
15 lines
372 B
all: files/initrd.img files/vmlinuz files/root.squashfs
|
|
|
|
files/initrd.img: linux | files
|
|
cp linux/build/rootfs/initrd.img files/initrd.img
|
|
|
|
files/vmlinuz: linux | files
|
|
cp linux/build/rootfs/vmlinuz files/vmlinuz
|
|
|
|
files/root.squashfs: linux | files
|
|
rm files/root.squashfs || true
|
|
mksquashfs linux/build/rootfs files/root.squashfs
|
|
|
|
.PHONY: linux
|
|
linux:
|
|
cd linux; make
|
|
|