summary refs log tree commit diff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorzlago2024-09-26 10:51:02 +0200
committerzlago2024-09-26 10:56:35 +0200
commitba5b241f672cce00d1fe9521da445aa8d7f918b0 (patch)
tree9a18c2f6b714d8b43c30c81b54bb800667706600 /GNUmakefile
parent9942429dbb83fed5532c070f8afe41d6ddcd66d2 (diff)
asset pipeline
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index c2238d8..314ea69 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -37,9 +37,11 @@ out/${NS}/incbin.o: src/incbin.s | out/${NS}/
 out/${NS}/%.d: src/%.c | out/${NS}/
 	${CC} ${cflags} ${CPPFLAGS} -MM -MG -MF $@ -MT "${@:.d=.o} $@" $<
 
-out/${NS}/a.out: ${objs} out/${NS}/incbin.o | out/${NS}/
+out/${NS}/a.out: ${objs} out/${NS}/incbin.o | out/${NS}/ out/assets.res
 	${CC} -o $@ $^ ${cflags} ${ldflags}
 
+include assets.mk
+
 include $(wildcard utl/*.mk)
 
 include ${deps}