From 6736966974aea334e119cdb0b6c330066061bf91 Mon Sep 17 00:00:00 2001 From: quou Date: Fri, 27 Dec 2024 11:35:01 +1100 Subject: basic text rendering --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ac6149c..fbc4cf4 100644 --- a/Makefile +++ b/Makefile @@ -2,11 +2,11 @@ target = c2 data_dir = data -shaders = $(data_dir)/triangle.csh +shaders = $(data_dir)/triangle.csh $(data_dir)/ui.csh 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 +objects = app.o c2.o video.o pipeline.o asset.o ui.o includes = -Iqstd defines = -Dplat_x86 -Dplat_posix -Dplat_x11 -Dallocation_default_alignment=8 cflags = -MMD -MF $(basename $@).d $(includes) $(defines) $(DEBUG_COMPILE_FLAG) @@ -37,6 +37,9 @@ pack: $(packed_files) packer data/triangle.csh: intermediate/triangle.glsl | $(data_dir) sc ./sc/sc intermediate/triangle.glsl $(data_dir)/triangle.csh +data/ui.csh: intermediate/ui.glsl | $(data_dir) sc + ./sc/sc intermediate/ui.glsl $(data_dir)/ui.csh + data/22.tex: intermediate/22.bmp | $(data_dir) convtexture ./convtexture intermediate/22.bmp $(data_dir)/22.tex bc1 @@ -55,6 +58,9 @@ pipeline.o: asset.o: $(CXX) -c $(cflags) asset.cpp -o asset.o +ui.o: + $(CXX) -c $(cflags) ui.cpp -o ui.o + c2.o: $(CXX) -c $(cflags) c2.cpp -o c2.o -- cgit v1.2.3-54-g00ecf