1
0
mirror of https://github.com/DoctorWkt/unix-jun72.git synced 2026-04-10 14:58:54 +00:00

Makefile now builds apout.

This commit is contained in:
warren.toomey
2008-05-07 01:02:35 +00:00
parent ff75494557
commit 65419678e6

View File

@@ -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)