From c4ca0e39e4e4916049a4fc4d71c4aa4162655b9a Mon Sep 17 00:00:00 2001 From: Nayan Sawyer <33187059+opus-tango@users.noreply.github.com> Date: Sun, 16 Nov 2025 12:39:36 -0500 Subject: [PATCH] add binary tree files to makefile --- data-structures/trees/binary-tree/c/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-structures/trees/binary-tree/c/Makefile b/data-structures/trees/binary-tree/c/Makefile index e887b70..280ffd3 100644 --- a/data-structures/trees/binary-tree/c/Makefile +++ b/data-structures/trees/binary-tree/c/Makefile @@ -5,7 +5,7 @@ RELEASE_FLAGS = -Wall -Wextra -DNDEBUG # LFLAGS = -lpthread # Source files -SRCS = main.c +SRCS = main.c binary-tree.c # Object files definition OBJS = $(SRCS:.c=.o)