From 495fed5c16ca36a2dbefb8d1f6242010bcea5345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Karpi=C5=84ski?= Date: Tue, 11 Feb 2020 18:37:40 +0100 Subject: [PATCH] removed global makefile --- Makefile | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 5c2f34c..0000000 --- a/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -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