aboutsummaryrefslogtreecommitdiffstats
path: root/pc-bios/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'pc-bios/Makefile')
-rw-r--r--pc-bios/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/pc-bios/Makefile b/pc-bios/Makefile
new file mode 100644
index 00000000..315288df
--- /dev/null
+++ b/pc-bios/Makefile
@@ -0,0 +1,19 @@
+#
+# NOTE: only compilable with x86 cross compile tools
+#
+include ../config-host.mak
+
+DEFINES=
+
+TARGETS=
+
+all: $(TARGETS)
+
+%.o: %.S
+ $(CC) $(DEFINES) -c -o $@ $<
+
+%.dtb: %.dts
+ dtc -I dts -O dtb -o $@ $<
+
+clean:
+ rm -f $(TARGETS) *.o *~