Add make clean build rule

This commit is contained in:
Justine Tunney 2023-06-18 01:23:54 -07:00
parent 8514933b60
commit 5ac522f0de
No known key found for this signature in database
GPG key ID: BE714B4575D6E328

View file

@ -65,7 +65,7 @@ MAKEFLAGS += --no-builtin-rules
.SUFFIXES: .SUFFIXES:
.DELETE_ON_ERROR: .DELETE_ON_ERROR:
.FEATURES: output-sync .FEATURES: output-sync
.PHONY: all o bins check test depend tags aarch64 .PHONY: all o bins check test depend tags aarch64 clean
ifneq ($(m),) ifneq ($(m),)
ifeq ($(MODE),) ifeq ($(MODE),)
@ -431,6 +431,9 @@ aarch64: private .UNSANDBOXED = true
aarch64: aarch64:
$(MAKE) m=aarch64 $(MAKE) m=aarch64
clean:
rm -rf o
# UNSPECIFIED PREREQUISITES TUTORIAL # UNSPECIFIED PREREQUISITES TUTORIAL
# #
# A build rule must exist for all files that make needs to consider in # A build rule must exist for all files that make needs to consider in