diff options
-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: |