fix: makefile not using specified lua and cc executables

This commit is contained in:
TopchetoEU 2025-03-13 18:30:12 +02:00
parent fec171c2b7
commit de6c7876c3
Signed by: topchetoeu
GPG Key ID: 6531B8583E5F6ED4

View File

@ -33,6 +33,6 @@ $(dst_dir):
mkdir -p $@
$(bytecode_target): $(lua_sources) $(dst_dir)
lua lib/build.lua src $@ $(lua_sources)
$(lua) lib/build.lua src $@ $(lua_sources)
$(target): $(c_sources) $(bytecode_target) $(dst_dir)
gcc $(flags) $(libraries) -include $(bytecode_target) $(c_sources) -o $@
$(cc) $(flags) $(libraries) -include $(bytecode_target) $(c_sources) -o $@