diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2023-04-13 17:45:00 +0200 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2023-04-13 17:45:00 +0200 |
| commit | f9e722f3056a4896a5ac19e4392653ef92c97e65 (patch) | |
| tree | 86744916d8e31b6f12d5567601431ebfee234f26 /Makefile | |
| parent | 5a2665c21b511ef90967af053f6a1d504b78afff (diff) | |
| download | cstructures-f9e722f3056a4896a5ac19e4392653ef92c97e65.tar.gz cstructures-f9e722f3056a4896a5ac19e4392653ef92c97e65.tar.zst cstructures-f9e722f3056a4896a5ac19e4392653ef92c97e65.zip | |
Fix Makefile
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/ - |
