# Makefile for sys. # Note: This makefile will only install things that are not part of a kernel # image. The kernel image itself it compiled by build(8). The clean target # does clean out the whole tree. Only the revision/timestamp stuff in # sys/version/ and the old images in sys/tools/ are left behind, they must be # removed with 'make reallyclean'. MAKE = exec make -$(MAKEFLAGS) install clean: cd cmd && $(MAKE) $@ cd fs && $(MAKE) $@ cd inet && $(MAKE) $@ cd kernel && $(MAKE) $@ cd mm && $(MAKE) $@ cd task.stubs && $(MAKE) $@ reallyclean: clean cd version && $(MAKE) $@ cd tools && $(MAKE) $@ # # $PchId: Makefile,v 1.3 1996/01/19 23:32:45 philip Exp $