aboutsummaryrefslogtreecommitdiff
path: root/sem3/algo/workshop2/dfs/Makefile
blob: 790bb94acc0c4d1c9881b0c4bd29676e8d279ea7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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)