aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-06-13 13:14:47 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-06-13 13:14:47 +0200
commit66004b8c75175227eb432ab0f56274d98a834eab (patch)
tree7bb37ee339218f41c200bb3c35fdf932e41d6118 /makefile
parent24fc13a036fb10140ed1b60dd1e9005821600fc1 (diff)
2-pass rendering working w/ fixed resolution + upscaling
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/makefile b/makefile
index d22eaec..d1383fb 100644
--- a/makefile
+++ b/makefile
@@ -15,15 +15,15 @@ all: main FORCE
main: main.o
main: die.o
main: shader.o
-main: visuals_frag.o
+main: pass1_frag.o
main: fill_vert.o
-main: output_frag.o
+main: pass2_frag.o
main: uniform.o
# fix compile order
main.o: fill_vert.h
-main.o: visuals_frag.h
-main.o: output_frag.h
+main.o: pass1_frag.h
+main.o: pass2_frag.h
%.s %.h &: %.spv
./blob $< $*