diff options
author | Julian T <julian@jtle.dk> | 2019-11-21 11:41:24 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2019-11-21 11:41:24 +0100 |
commit | 9eccc3f2f3f03ffdd9d7b985fecf7222bb956df3 (patch) | |
tree | 4adbb3eee59f6fbecb1bca0ad297d5090c92a39a /sem1/algo/workshop2/dfs/Makefile | |
parent | 8a683b6e70de446d16b809fbcbf395153fc367b9 (diff) |
Added dfs impl
Diffstat (limited to 'sem1/algo/workshop2/dfs/Makefile')
-rw-r--r-- | sem1/algo/workshop2/dfs/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/sem1/algo/workshop2/dfs/Makefile b/sem1/algo/workshop2/dfs/Makefile new file mode 100644 index 0000000..790bb94 --- /dev/null +++ b/sem1/algo/workshop2/dfs/Makefile @@ -0,0 +1,41 @@ +CC = gcc +# Enable gdb and pull include files from current dir +CFLAGS = -ggdb -I. +LDFLAGS = + +BINARY = dfs +BUILD_DIR = build + +# Capture c files +c_files = $(wildcard *.c) + +# Convert c names to corrosponding o names +OBJ = $(patsubst %.c, $(BUILD_DIR)/%.o, $(c_files)) + +# $@ is the %.o file and $^ is the %.c file +$(BUILD_DIR)/%.o: %.c + mkdir -p $(dir $@) + $(CC) -c -o $@ $^ $(CFLAGS) + +# $@ becomes left part thus linked +$(BINARY): $(OBJ) + $(CC) -o $@ $^ $(LDFLAGS) + +.PHONY: clean run + +run: $(BINARY) + ./$(BINARY) + +hej.png: hej.dot + dot -Tpng hej.dot > hej.png + +hej.dot: $(BINARY) + ./$(BINARY) > hej.dot + +draw: hej.png + nomacs hej.png + +clean: + rm -f $(OBJ) $(BINARY) + rm hej* + rmdir $(BUILD_DIR) |