From 089b0b93570eb49106b3a536e90ee421dc91f14c Mon Sep 17 00:00:00 2001 From: Meiye_lj Date: Sat, 19 Apr 2025 19:15:01 +0800 Subject: [PATCH] fix missing dependecies in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cb10816..33d01a2 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ all : main -main : main.c coroutine.c +main : main.c coroutine.c coroutine.h gcc -g -Wall -o $@ $^ clean :