From e38b161b7bedda39af3dff4dc5465f704cc7f3c0 Mon Sep 17 00:00:00 2001 From: Alexandre Janniaux Date: Tue, 8 Aug 2023 11:33:42 +0200 Subject: [PATCH] make.pl: show compiled lua scripts Extract the build target when building luac files. Before: MAKE : share ... luac -o lua/extensions/VLSub.luac ../../share/lua/extensions/VLSub.lua After: MAKE : share ... COMPILE : lua/extensions/VLSub.luac --- extras/buildsystem/make.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/extras/buildsystem/make.pl b/extras/buildsystem/make.pl index 2fd4d33d70..aa42815606 100755 --- a/extras/buildsystem/make.pl +++ b/extras/buildsystem/make.pl @@ -63,6 +63,7 @@ while() $line =~ s/^.* (lib.*\.so).*/ LINK : $1/g || $line =~ s/^.* (lib.*\.o)\s\.\/(.*)/ COMPILE : $2/g || $line =~ s/^.*(lib.*\.lo)\s.*/ COMPILE : $1/g || + $line =~ s/^.* (.*\.luac)\s.*/ COMPILE : $1/g || $line =~ s/^.* (lib.*\.o)\s`.*`(.*);\ \\/ COMPILE : $2/ || $line =~ s/.*\-o\s([^\s]*)\s`.*`([^\s]*);.*/ COMPILE : $2/g || $line =~ s/^[A-z0-9-]*ranlib\s(.*)/ RANLIB : $1/g ||