aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 623af48..ef8b428 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ BIN=target/bin/main
CC=gcc
# CFLAGS=-g -Wall -Wextra -Wpedantic -O1 -std=c17
CFLAGS=-Wall -Wextra -Wpedantic -O1 -std=c17
-OBJS=target/objs/main.o target/objs/graph.o target/objs/queue.o target/objs/stack.o target/objs/any_stack.o
+OBJS=target/objs/main.o target/objs/graph.o target/objs/queue.o target/objs/stack.o
$(shell mkdir -p $(DIRS))
all: $(BIN)
@@ -17,4 +17,3 @@ target/objs/%.o: src/%.c
clean:
rm -rf target/
-