From 03fb41e835ff4d10325351c1460e9445e4b572ca Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Fri, 14 Nov 2014 03:30:52 +0100 Subject: improving build system --- boot0/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 boot0/Makefile (limited to 'boot0/Makefile') diff --git a/boot0/Makefile b/boot0/Makefile new file mode 100644 index 0000000..e930498 --- /dev/null +++ b/boot0/Makefile @@ -0,0 +1,16 @@ +#master boot record + +include ../Makefile.common + +MBR=mbr.bin + +ASM_SOURCES=$(wildcard *.asm) + +$(MBR): $(ASM_SOURCES) + +clean: + -rm $(MBR) + + + + -- cgit v1.2.3