commit d9d61540c09c9eca4f90e4311eda21effff8268a parent 647bbbaed1c74aa0dabc21ce32d71acb3c0c02e2 Author: Matsuda Kenji <info@mtkn.jp> Date: Sun, 25 Jun 2023 09:58:45 +0900 add run target Diffstat:
M | Makefile | | | 3 | +++ |
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -10,5 +10,8 @@ LDFLAGS = -lglfw -lGL -lX11 -lpthread -lXrandr -lXi -ldl all: $(SRC) $(CC) -o $(OUT) $(INCS) $(LDFLAGS) $(SRC) +run: all + ./$(OUT) + clean: rm -rf main