From 103cb434b5ca6aae86e5893965da759de5c0c3d2 Mon Sep 17 00:00:00 2001 From: Kalle Vahlman Date: Thu, 15 Sep 2011 14:24:46 +0300 Subject: Add a rudimentary Makefile for building --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..61be941 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ + +CC := arm-linux-gnueabi-gcc + +SOURCES = newmac.c + +snowball-mactool: $(SOURCES) + $(CC) -static $(SOURCES) -o $@ -- cgit v1.2.3