aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: d22eaec23d5114fb4b7313e7405aa1e3766fa21f (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
LDFLAGS += -lglfw
LDFLAGS += -lOpenGL
LDFLAGS += -lGLEW

CFLAGS += -g

GLFLAGS += --target-env=opengl
GLFLAGS += -fauto-map-locations

.PHONY: FORCE
.SECONDARY: # do not remove intermediate files

all: main FORCE

main: main.o
main: die.o
main: shader.o
main: visuals_frag.o
main: fill_vert.o
main: output_frag.o
main: uniform.o

# fix compile order
main.o: fill_vert.h
main.o: visuals_frag.h
main.o: output_frag.h

%.s %.h &: %.spv
	./blob $< $*

%_frag.spv: %.frag
	glslc $(GLFLAGS) -o $@ $<
%_vert.spv: %.vert
	glslc $(GLFLAGS) -o $@ $<

clean: FORCE
	git clean -fxdi