1
0
mirror of https://github.com/DoctorWkt/unix-jun72.git synced 2026-01-11 23:53:34 +00:00
tim.newsham 9005bfe4ea - 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.
2008-05-11 20:50:00 +00:00

13 lines
152 B
Makefile

all :
(cd tools; make)
(cd build; make install)
clean :
(cd build; make clean)
clobber : clean
(cd tools; make clean)
(cd build; make clobber)