From 2fbefc544ddf5eb24c90468dfbc00e34628ac710 Mon Sep 17 00:00:00 2001 From: Amber Date: Tue, 15 Jul 2025 13:53:20 -0400 Subject: [PATCH] fix make run --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7864dd0..df3b7d6 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,16 @@ CFLAGS=-std=c99 -pedantic -Wall -Wextra LIBS=-lncursesw EXECUTABLE=bbs +.PHONY: all all: make + make: $(CC) $(CFLAGS) $(LIBS) bbs.c -o $(EXECUTABLE) -run: +.PHONY: execute +execute: ./$(EXECUTABLE) + +.PHONY: run +run: make execute