Rename mp_lua.c/h to lua.c/h

This commit is contained in:
wm4 2013-12-17 01:15:48 +01:00
parent 56eafe3344
commit 053c743724
6 changed files with 8 additions and 8 deletions

View File

@ -133,7 +133,7 @@ SOURCES-$(WAYLAND) += video/out/vo_wayland.c video/out/wayland_comm
SOURCES-$(VF_LAVFI) += video/filter/vf_lavfi.c
SOURCES-$(AF_LAVFI) += audio/filter/af_lavfi.c
SOURCES-$(LUA) += player/mp_lua.c
SOURCES-$(LUA) += player/lua.c
ifeq ($(HAVE_AVUTIL_REFCOUNTING),no)
SOURCES-yes += video/decode/lavc_dr1.c
@ -421,15 +421,15 @@ sub/osd_libass.c: sub/osd_font.h
sub/osd_font.h: TOOLS/file2string.pl sub/osd_font.otf
./$^ >$@
player/mp_lua.c: player/lua/defaults.inc
player/lua.c: player/lua/defaults.inc
player/lua/defaults.inc: TOOLS/file2string.pl player/lua/defaults.lua
./$^ >$@
player/mp_lua.c: player/lua/assdraw.inc
player/lua.c: player/lua/assdraw.inc
player/lua/assdraw.inc: TOOLS/file2string.pl player/lua/assdraw.lua
./$^ >$@
player/mp_lua.c: player/lua/osc.inc
player/lua.c: player/lua/osc.inc
player/lua/osc.inc: TOOLS/file2string.pl player/lua/osc.lua
./$^ >$@

View File

@ -73,7 +73,7 @@
#include "osdep/io.h"
#include "core.h"
#include "mp_lua.h"
#include "lua.h"
struct command_ctx {
int events;

View File

@ -18,7 +18,7 @@
#include "sub/osd.h"
#include "core.h"
#include "command.h"
#include "mp_lua.h"
#include "lua.h"
// List of builtin modules and their contents as strings.
// All these are generated from player/lua/*.lua

View File

@ -61,7 +61,7 @@
#include "video/out/vo.h"
#include "core.h"
#include "mp_lua.h"
#include "lua.h"
#include "command.h"
#include "screenshot.h"

View File

@ -214,7 +214,7 @@ def build(ctx):
( "player/loadfile.c" ),
( "player/main.c" ),
( "player/misc.c" ),
( "player/mp_lua.c", "lua" ),
( "player/lua.c", "lua" ),
( "player/osd.c" ),
( "player/playloop.c" ),
( "player/screenshot.c" ),