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 --- boot/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 boot/Makefile (limited to 'boot/Makefile') diff --git a/boot/Makefile b/boot/Makefile new file mode 100644 index 0000000..17dc454 --- /dev/null +++ b/boot/Makefile @@ -0,0 +1,16 @@ +#master boot record + +include ../Makefile.common + +STAGE2=stage2.bin + +ASM_SOURCES=$(wildcard *.asm) + +$(STAGE2): $(ASM_SOURCES) + +clean: + -rm $(STAGE2) + + + + -- cgit v1.2.3