From 74dcc7a12f6100d56e38c7aefb131f41c9fe9b52 Mon Sep 17 00:00:00 2001 From: Son Ho Date: Mon, 11 Mar 2024 17:47:59 +0100 Subject: Update the Makefile to automatically reformat the code --- Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8b9c8392..880bf83e 100644 --- a/Makefile +++ b/Makefile @@ -49,13 +49,17 @@ SUBDIR := # The rules #################################### +# Build the compiler, after formatting the code +.PHONY: build +build: format build-dev + # Build the project, test it and verify the generated files .PHONY: build-tests-verify build-tests-verify: build tests verify -# Build the project -.PHONY: build -build: build-bin build-lib build-bin-dir doc +# Build the project, without formatting the code +.PHONY: build-dev +build-dev: build-bin build-lib build-bin-dir doc .PHONY: build-bin build-bin: -- cgit v1.2.3