diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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/ - |
