From 74cca183e01429f0ec8649ce9fa3845025f237e7 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 31 Aug 2025 14:20:44 +0100 Subject: [PATCH] Make all the default target --- .gitignore | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index bbc399d..6f31099 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,6 @@ test.* *.obj compile_commands.json libwapp-build -libwapp.so +dist *.vs __pycache__ diff --git a/Makefile b/Makefile index 6ff1532..8de903f 100644 --- a/Makefile +++ b/Makefile @@ -45,6 +45,8 @@ endif .PHONY: help full prng testing uuid core primitives all clean builddir build-test run-test codegen install build-lib +all: clean builddir codegen run-c-test full run-cc-test + help: @echo "Available build variables:" @echo " CC C compiler to use (Default: clang)." @@ -91,8 +93,6 @@ primitives: install clean: @rm -rf $(BUILD_DIR) -all: clean builddir codegen run-c-test full run-cc-test - builddir: @mkdir -p $(BUILD_DIR)