diff options
author | zachir <zachir@librem.one> | 2024-03-11 01:34:22 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2024-03-11 01:34:22 -0500 |
commit | 2b135d87f5c1f1f307984f5fd78e151f5ee99dae (patch) | |
tree | 6e9e089326ea40badd6dab25a3ed5a7cef61dcbd /.gitignore | |
parent | 42b5d719a0207a56b482a4e0298d72b628b93fa0 (diff) |
Replace build system with zig
Zig is actually handling the building and such, now the Makefile is
here just as a wrapper for it.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ -# Ignore object files -*.o +# Ignore Zig build dirs +zig-cache/ -#Ignore the compiled binary -even +# Ignore the compiled binary +zig-out/ |