From 45c8314606f04cc65f511685903128b0701e75aa Mon Sep 17 00:00:00 2001 From: stitchy Date: Wed, 29 Nov 2023 20:50:04 +0000 Subject: [PATCH] one last time --- threads/makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/threads/makefile b/threads/makefile index 35f83e4..d8de9c1 100644 --- a/threads/makefile +++ b/threads/makefile @@ -4,5 +4,8 @@ output=myCounter all: main.c main.h $(CC) main.c -lpthread -o $(output) +run: all + ./$(output) + clean: rm -fr *.o vgcore.* $(output)