summaryrefslogtreecommitdiffstats
path: root/old-makefile
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-17 02:02:25 +0100
committerwm4 <wm4@nowhere>2013-12-17 02:07:57 +0100
commiteb15151705d47d23da844449126cc6b4879f110e (patch)
tree661866ee9e73bc893c7963660aae01db503e99aa /old-makefile
parent793f85945fc07db905e54390c065ae51b9eeef9b (diff)
downloadmpv-eb15151705d47d23da844449126cc6b4879f110e.tar.bz2
mpv-eb15151705d47d23da844449126cc6b4879f110e.tar.xz
Move options/config related files from mpvcore/ to options/
Since m_option.h and options.h are extremely often included, a lot of files have to be changed. Moving path.c/h to options/ is a bit questionable, but since this is mainly about access to config files (which are also handled in options/), it's probably ok.
Diffstat (limited to 'old-makefile')
-rw-r--r--old-makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/old-makefile b/old-makefile
index 01a6a2e0b6..4241955581 100644
--- a/old-makefile
+++ b/old-makefile
@@ -201,19 +201,19 @@ SOURCES = audio/audio.c \
mpvcore/charset_conv.c \
mpvcore/codecs.c \
mpvcore/cpudetect.c \
- mpvcore/m_config.c \
- mpvcore/m_option.c \
- mpvcore/m_property.c \
mpvcore/mp_common.c \
mpvcore/mp_msg.c \
mpvcore/mp_ring.c \
- mpvcore/options.c \
- mpvcore/parser-cfg.c \
- mpvcore/parser-mpcmd.c \
- mpvcore/path.c \
mpvcore/playlist.c \
mpvcore/playlist_parser.c \
mpvcore/version.c \
+ options/m_config.c \
+ options/m_option.c \
+ options/m_property.c \
+ options/options.c \
+ options/parse_commandline.c \
+ options/parse_configfile.c \
+ options/path.c \
osdep/io.c \
osdep/numcores.c \
osdep/timer.c \