aboutsummaryrefslogtreecommitdiff
path: root/external/memboot/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'external/memboot/Makefile')
-rw-r--r--external/memboot/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/external/memboot/Makefile b/external/memboot/Makefile
new file mode 100644
index 0000000..9b526a3
--- /dev/null
+++ b/external/memboot/Makefile
@@ -0,0 +1,14 @@
+all: memboot
+
+CFLAGS=-O2 -Wall
+
+memboot: memboot.c
+ $(CC) $(CFLAGS) -o $@ $^
+
+.PHONY: clean
+clean:
+ rm -rf memboot
+
+.PHONY: distclean
+distclean: clean
+ rm -rf *.c~ *.h~ *.i *.s Makefile~