From 4e5a2ad18cfcebca6e78ad3d8dcbfefee1094aac Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 12 Aug 2017 12:21:37 -0600 Subject: [PATCH] Application.mk: Add the .PRECIOUS target to prevent libapps.a from being deleted when the make is interrupted. --- Application.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/Application.mk b/Application.mk index cc62e8dc6..bfdc79f6a 100644 --- a/Application.mk +++ b/Application.mk @@ -70,6 +70,7 @@ VPATH = all: .built .PHONY: clean preconfig depend distclean +.PRECIOUS: $(BIN) $(AOBJS): %$(OBJEXT): %.S $(call ASSEMBLE, $<, $@)