mirror of
https://github.com/DoctorWkt/unix-jun72.git
synced 2026-01-11 23:53:34 +00:00
- clean doesnt clean out tools, just intermediate build files.
We can change this if people disagree with this approach.
13 lines
152 B
Makefile
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)
|
|
|