summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d56363b..ac6149c 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
target = c2
data_dir = data
shaders = $(data_dir)/triangle.csh
-textures = $(data_dir)/22.tex
+textures = $(data_dir)/22.tex $(data_dir)/kita.tex
packed_files = $(shaders) $(textures)
tools = qstd cfg sc
objects = app.o c2.o video.o pipeline.o asset.o
@@ -40,6 +40,9 @@ data/triangle.csh: intermediate/triangle.glsl | $(data_dir) sc
data/22.tex: intermediate/22.bmp | $(data_dir) convtexture
./convtexture intermediate/22.bmp $(data_dir)/22.tex bc1
+data/kita.tex: intermediate/kita.bmp | $(data_dir) convtexture
+ ./convtexture intermediate/kita.bmp $(data_dir)/kita.tex bc1
+
app.o:
$(CXX) -c $(cflags) app.cpp -o app.o