summaryrefslogtreecommitdiff
path: root/boot1/Makefile
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-14 11:08:04 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-14 11:08:04 +0100
commite3cc5f6c89ba9f37bf2c1edf588d0f75c1d63c57 (patch)
tree1c43c3e9ce81f7564beb3a970b88beaa66169946 /boot1/Makefile
parent2761b620043ad511d9baf66d5478a463aeece77b (diff)
rename dirs
Diffstat (limited to 'boot1/Makefile')
-rw-r--r--boot1/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/boot1/Makefile b/boot1/Makefile
new file mode 100644
index 0000000..e930498
--- /dev/null
+++ b/boot1/Makefile
@@ -0,0 +1,16 @@
+#master boot record
+
+include ../Makefile.common
+
+MBR=mbr.bin
+
+ASM_SOURCES=$(wildcard *.asm)
+
+$(MBR): $(ASM_SOURCES)
+
+clean:
+ -rm $(MBR)
+
+
+
+