From f9e722f3056a4896a5ac19e4392653ef92c97e65 Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Thu, 13 Apr 2023 17:45:00 +0200 Subject: Add Readme and License Fix Makefile --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Makefile') 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/ - -- cgit v1.3.1