1
0
mirror of https://github.com/DoctorWkt/unix-jun72.git synced 2026-04-04 21:17:40 +00:00

- added top level "clean" and "clobber" rules.

- clean doesnt clean out tools, just intermediate build files.
    We can change this if people disagree with this approach.
This commit is contained in:
tim.newsham
2008-05-11 20:50:00 +00:00
parent a5833b0774
commit 9005bfe4ea
2 changed files with 8 additions and 1 deletions

View File

@@ -3,3 +3,10 @@ all :
(cd tools; make)
(cd build; make install)
clean :
(cd build; make clean)
clobber : clean
(cd tools; make clean)
(cd build; make clobber)

View File

@@ -10,5 +10,5 @@ apout/apout:
(cd apout; make; rm *.o)
clean:
rm mkfs ml
rm -f mkfs ml
(cd apout; make clean)