aboutsummaryrefslogtreecommitdiffhomepage
path: root/justfile
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-05-03 10:32:53 +0900
committernsfisis <nsfisis@gmail.com>2025-05-03 10:32:53 +0900
commit441a78966e5fa230290dec0f96651fe88f45c36b (patch)
tree5678cb2f8e6dab3463dcc1e2fe76952de99b91de /justfile
parent84b78d9895f4b794c006fba3284f29a250a47588 (diff)
downloadP4Dcc-441a78966e5fa230290dec0f96651fe88f45c36b.tar.gz
P4Dcc-441a78966e5fa230290dec0f96651fe88f45c36b.tar.zst
P4Dcc-441a78966e5fa230290dec0f96651fe88f45c36b.zip
hello world
Diffstat (limited to 'justfile')
-rw-r--r--justfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/justfile b/justfile
new file mode 100644
index 0000000..52cf61c
--- /dev/null
+++ b/justfile
@@ -0,0 +1,9 @@
+CFLAGS := "-Wno-builtin-declaration-mismatch"
+
+all: build
+
+build:
+ gcc main.c {{CFLAGS}}
+
+clean:
+ rm a.out