diff options
author | Julian T <julian@jtle.dk> | 2019-11-22 13:17:35 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2019-11-22 13:17:35 +0100 |
commit | b9f94964183d680efd071abe5de2965124803971 (patch) | |
tree | eec404f4298c14268add49c1d13b3a33026a2221 /sem1/algo/workshop2/dijkstra/Makefile | |
parent | 90999d01eff3b197001739ee3ee9ff6dd64217ce (diff) |
Added dijkstra with dot format import
Diffstat (limited to 'sem1/algo/workshop2/dijkstra/Makefile')
-rw-r--r-- | sem1/algo/workshop2/dijkstra/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sem1/algo/workshop2/dijkstra/Makefile b/sem1/algo/workshop2/dijkstra/Makefile new file mode 100644 index 0000000..7837354 --- /dev/null +++ b/sem1/algo/workshop2/dijkstra/Makefile @@ -0,0 +1,31 @@ +CC = gcc +# Enable gdb and pull include files from current dir +CFLAGS = -ggdb -I. +LDFLAGS = + +BINARY = dijkstra +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) + +clean: + rm -f $(OBJ) $(BINARY) + rmdir $(BUILD_DIR) |