diff options
author | Son Ho | 2024-03-20 06:38:23 +0100 |
---|---|---|
committer | Son Ho | 2024-03-20 06:38:23 +0100 |
commit | 34850eed3c66f7f2c432294e4c589be53ad5d37b (patch) | |
tree | 7748d3c19a0993edc710690491a2dc6ea3a2b58f | |
parent | 07021e902a442ccda5979059415c51ddc4930980 (diff) | |
parent | 8111c970fcae9d609961eba2ad6716e8c9fc1046 (diff) |
Merge remote-tracking branch 'origin/main' into son/examples
-rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -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-test-verify build-test-verify: build test 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: |