blob: bf2a5dcc5315e467dd26450504d874afce7759cc (
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 debugging
CFLAGS=-ggdb -O3 -Wall
# We need math
LDFLAGS=-lm -lpthread
# Output and build options
BINARY=raytrace
BUILD_DIR=build
# Input files
c_files=$(wildcard *.c)
OBJ=$(patsubst %.c, $(BUILD_DIR)/%.o, $(c_files))
# Build rules
# $@ 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: render run show clean
# This will also generate the image
render: $(BINARY)
./$(BINARY) | convert - test.png
run: $(BINARY)
./$(BINARY)
show: run
xdg-open test.png
clean:
rm -f $(OBJ) $(BINARY)
rmdir $(BUILD_DIR)
|