commit 1e5d7837b49f7d665b25614ef262b7a963107771 parent 101a421d54e0a443b5497995e30073cb0dc14077 Author: Anton Konyahin <me@konyahin.xyz> Date: Mon, 11 Mar 2024 19:54:52 +0300 gitignore Diffstat:
A | .gitignore | | | 2 | ++ |
M | Makefile | | | 2 | +- |
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore @@ -0,0 +1,2 @@ +flbng +*.o diff --git a/Makefile b/Makefile @@ -1,6 +1,6 @@ .POSIX: .SUFFIXES: -.PHONY: install uninstall clean +.PHONY: install uninstall clean run test BIN = flbng CC = cc