Force luac 5.4 Compile

one line change in makefile for skeletool, simply requires that user use luac5.4 just incase they have multiple luac/lua versions.
This commit is contained in:
westonCoder 2023-07-28 09:15:49 -05:00
parent a1542b34fe
commit ba6ee8cce5

View file

@ -20,7 +20,7 @@ default: skeletool64
build/lua/%.o: lua/%.lua
@mkdir -p $(@D)
luac -o $(@:%.o=%.out) $<
luac5.4 -o $(@:%.o=%.out) $<
ld -r -b binary -o $@ $(@:%.o=%.out)
build/%.o: %.cpp