From fc92776990f61c0cf76ad22187f605e202dcf7c9 Mon Sep 17 00:00:00 2001 From: "warren.toomey" Date: Tue, 6 May 2008 23:45:15 +0000 Subject: [PATCH] Just so we can build mkfs and ml easily. We can add it to docos later on. --- tools/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tools/Makefile diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 0000000..88c8c08 --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,10 @@ +CFLAGS=-g -Wall + +all: mkfs ml + +mkfs: mkfs.c + +ml: ml.c + +clean: + rm mkfs ml