diff options
author | Julian T <julian@jtle.dk> | 2019-10-27 23:09:19 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2019-10-28 12:38:11 +0100 |
commit | 8cbdd712bbef89c2d7996fa9be8b768e6f9fd1a9 (patch) | |
tree | 444c672350575800d4fe6aa3e4721c312309e0ff /sem1/algo/mm12/Makefile | |
parent | 5bc38338c79ef313f639696ec85e424c5d9c0b0c (diff) |
Added dijkstra implementation
Diffstat (limited to 'sem1/algo/mm12/Makefile')
-rw-r--r-- | sem1/algo/mm12/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sem1/algo/mm12/Makefile b/sem1/algo/mm12/Makefile new file mode 100644 index 0000000..7837354 --- /dev/null +++ b/sem1/algo/mm12/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) |