mirror of
https://github.com/DoctorWkt/unix-jun72.git
synced 2026-01-13 15:27:49 +00:00
- clean doesnt clean out tools, just intermediate build files.
We can change this if people disagree with this approach.
15 lines
153 B
Makefile
15 lines
153 B
Makefile
CFLAGS=-g -Wall
|
|
|
|
all: mkfs ml apout/apout
|
|
|
|
mkfs: mkfs.c
|
|
|
|
ml: ml.c
|
|
|
|
apout/apout:
|
|
(cd apout; make; rm *.o)
|
|
|
|
clean:
|
|
rm -f mkfs ml
|
|
(cd apout; make clean)
|