diff options
| -rw-r--r-- | Makefile | 6 | 
1 files changed, 6 insertions, 0 deletions
| @@ -148,6 +148,12 @@ _forktest: forktest.o $(ULIB)  mkfs: mkfs.c fs.h  	gcc -Werror -Wall -o mkfs mkfs.c +# Prevent deletion of intermediate files, e.g. cat.o, after first build, so +# that disk image changes after first build are persistent until clean.  More +# details: +# http://www.gnu.org/software/make/manual/html_node/Chained-Rules.html +.PRECIOUS: %.o +  UPROGS=\  	_cat\  	_echo\ | 
