aboutsummaryrefslogtreecommitdiff
path: root/sem1/algo/workshop2/dfs/Makefile
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2020-02-11 12:24:56 +0100
committerJulian T <julian@jtle.dk>2020-02-11 12:24:56 +0100
commit6db1a2cdd3b96731f2e092d55d8c2136eabc52d0 (patch)
tree2be8fae8ce82d708ed9f00f376dda14420850e80 /sem1/algo/workshop2/dfs/Makefile
parent57305119e05559c1c37e903aef89cd43f44c42c9 (diff)
Rename and cleanup
Diffstat (limited to 'sem1/algo/workshop2/dfs/Makefile')
-rw-r--r--sem1/algo/workshop2/dfs/Makefile41
1 files changed, 0 insertions, 41 deletions
diff --git a/sem1/algo/workshop2/dfs/Makefile b/sem1/algo/workshop2/dfs/Makefile
deleted file mode 100644
index 790bb94..0000000
--- a/sem1/algo/workshop2/dfs/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-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)