diff options
author | Max Kellermann <max@duempel.org> | 2008-09-22 10:04:39 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-22 10:04:39 +0200 |
commit | 07632841df4ff1d8fcfac33bd93e06ee43a4498e (patch) | |
tree | cadb859c1ae63041fbc774528974283a2b1635bf /src/Makefile.am | |
parent | d28a7d463b62412e2d075b834db20baf93dcaeba (diff) | |
download | mpd-07632841df4ff1d8fcfac33bd93e06ee43a4498e.tar.gz mpd-07632841df4ff1d8fcfac33bd93e06ee43a4498e.tar.xz mpd-07632841df4ff1d8fcfac33bd93e06ee43a4498e.zip |
screen: moved code to ncu.c
Moved basic libncurses initialization to ncu.c and ncu.h. Keep
generic code out of screen.c.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index a16fef521..9a2d5c022 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -20,6 +20,7 @@ ncmpc_headers = \ options.h\ conf.h\ command.h\ + ncu.h \ screen.h\ screen_utils.h\ list_window.h\ @@ -51,6 +52,7 @@ ncmpc_SOURCES = \ options.c\ conf.c\ command.c\ + ncu.c \ screen.c\ screen_utils.c\ screen_play.c\ |