diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-05-03 10:32:53 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-05-03 10:32:53 +0900 |
| commit | 441a78966e5fa230290dec0f96651fe88f45c36b (patch) | |
| tree | 5678cb2f8e6dab3463dcc1e2fe76952de99b91de /justfile | |
| parent | 84b78d9895f4b794c006fba3284f29a250a47588 (diff) | |
| download | P4Dcc-441a78966e5fa230290dec0f96651fe88f45c36b.tar.gz P4Dcc-441a78966e5fa230290dec0f96651fe88f45c36b.tar.zst P4Dcc-441a78966e5fa230290dec0f96651fe88f45c36b.zip | |
hello world
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 9 |
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 |
