aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e593d69..ad5e6c0 100644
--- a/Makefile
+++ b/Makefile
@@ -18,3 +18,15 @@ clean:
run: build
./build/null-browser
+
+debug:
+ DEBUG=1 make build
+ gdb ./build/null-browser
+
+build-release:
+ RELEASE=1 make build
+
+check:
+ clang-format -i ./src/**/*.{hpp,cpp}
+ clang-tidy ./src/**/*.{hpp,cpp}
+