From 65419678e65d2afa857c391253c070dd15bfa59f Mon Sep 17 00:00:00 2001 From: "warren.toomey" Date: Wed, 7 May 2008 01:02:35 +0000 Subject: [PATCH] Makefile now builds apout. --- tools/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/Makefile b/tools/Makefile index 88c8c08..3d50a3e 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -1,10 +1,14 @@ CFLAGS=-g -Wall -all: mkfs ml +all: mkfs ml apout/apout mkfs: mkfs.c ml: ml.c +apout/apout: + (cd apout; make; rm *.o) + clean: rm mkfs ml + (cd apout; make clean)