aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2023-04-13 17:45:00 +0200
committerMaksymilian Jopek <maks@jopek.eu>2023-04-13 17:45:00 +0200
commitf9e722f3056a4896a5ac19e4392653ef92c97e65 (patch)
tree86744916d8e31b6f12d5567601431ebfee234f26 /Makefile
parent5a2665c21b511ef90967af053f6a1d504b78afff (diff)
downloadcstructures-f9e722f3056a4896a5ac19e4392653ef92c97e65.tar.gz
cstructures-f9e722f3056a4896a5ac19e4392653ef92c97e65.tar.zst
cstructures-f9e722f3056a4896a5ac19e4392653ef92c97e65.zip
Add Readme and LicenseHEADmaster
Fix Makefile
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/
-