X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=Makefile.am;h=ae6d5560f77d8ebdbde6c354c4fd476643efdadb;hb=89f21b1a1894a6da9e02d83ef3fdaaa8d9a9b59a;hp=531954593cc6c94c058c636e20976b391d9c5ab0;hpb=63343421b198b8d52711795246aa80708c34c0a6;p=ncmpc.git diff --git a/Makefile.am b/Makefile.am index 5319545..ae6d556 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,6 +12,7 @@ AM_CPPFLAGS = \ -DSYSCONFDIR=\""$(sysconfdir)"\" ncmpc_headers = \ + src/glib_compat.h \ src/resolver.h \ src/gidle.h \ src/mpdclient.h \ @@ -21,13 +22,14 @@ ncmpc_headers = \ src/conf.h \ src/command.h \ src/ncu.h \ + src/ncfix.h \ src/player_command.h \ src/window.h \ src/title_bar.h \ src/progress_bar.h \ src/status_bar.h \ src/screen.h \ - src/screen_message.h \ + src/screen_status.h \ src/screen_interface.h \ src/screen_list.h \ src/screen_find.h \ @@ -56,15 +58,17 @@ ncmpc_headers = \ src/screen_keydef.h \ src/screen_lyrics.h \ src/screen_outputs.h \ + src/screen_chat.h \ src/screen_text.h \ src/plugin.h \ src/lyrics.h \ - src/str_pool.h \ - src/lirc.h + src/lirc.h \ + src/ncmpc_curses.h bin_PROGRAMS = src/ncmpc src_ncmpc_LDADD = \ + $(CURSES_LIB) \ $(LIBMPDCLIENT_LIBS) \ $(GLIB_LIBS) \ $(LIBLIRCCLIENT_LIBS) @@ -85,7 +89,7 @@ src_ncmpc_SOURCES = \ src/progress_bar.c \ src/status_bar.c \ src/screen.c \ - src/screen_message.c \ + src/screen_status.c \ src/screen_list.c \ src/screen_find.c \ src/screen_utils.c \ @@ -100,7 +104,21 @@ src_ncmpc_SOURCES = \ src/wreadln.c \ src/strfsong.c \ src/utils.c \ - src/str_pool.c + src/win/ncmpc.rc + +# +# Windows resource file +# + +src/win/ncmpc_win32_rc.$(OBJEXT): src/win/ncmpc_win32_rc.rc + $(WINDRES) -i $< -o $@ + +if HAVE_WINDOWS +noinst_DATA = src/win/ncmpc_win32_rc.rc + +src_ncmpc_DEPENDENCIES = src/win/ncmpc_win32_rc.$(OBJEXT) +src_ncmpc_LDFLAGS = -Wl,src/win/ncmpc_win32_rc.$(OBJEXT) +endif if NCMPC_MINI else @@ -146,12 +164,16 @@ if ENABLE_OUTPUTS_SCREEN src_ncmpc_SOURCES += src/screen_outputs.c endif +if ENABLE_CHAT_SCREEN +src_ncmpc_SOURCES += src/screen_chat.c +endif + if ENABLE_LIRC src_ncmpc_SOURCES += src/lirc.c endif -# build the smalles possible ncmpc binary +# build the smallest possible ncmpc binary src/ncmpc-tiny: $(filter-out %.h,$(src_ncmpc_SOURCES)) $(COMPILE) --combine -fwhole-program $(src_ncmpc_LDFLAGS) $(src_ncmpc_LDADD) $(LIBS) $^ -o $@ strip --strip-all $@ @@ -166,8 +188,8 @@ check_PROGRAMS = \ test/run_hscroll test_run_hscroll_SOURCES = test/run_hscroll.c src/hscroll.c src/charset.c -test_run_hscroll_CPPFLAGS = -Isrc $(AM_CPPFLAGS) -test_run_hscroll_LDFLAGS = $(GLIB_LIBS) +test_run_hscroll_CPPFLAGS = -I$(srcdir)/src $(AM_CPPFLAGS) +test_run_hscroll_LDADD = @CURSES_LIB@ $(GLIB_LIBS) # # sparse @@ -186,7 +208,7 @@ sparse-check: # lyrics plugins # -lyrics_plugins = lyrics/01-hd.sh lyrics/02-lyricwiki.rb lyrics/03-leoslyrics.py +lyrics_plugins = lyrics/10-hd.sh lyrics/15-leoslyrics.sh lyrics/20-lyricwiki.rb lyrics/30-leoslyrics.py if ENABLE_LYRICS_SCREEN @@ -204,10 +226,33 @@ doc_DATA = \ AUTHORS NEWS README man_MANS = doc/ncmpc.1 +if ENABLE_DOCUMENTATION +doc/api/html/index.html: doc/doxygen.conf + @mkdir -p $(@D) + $(DOXYGEN) $< + +all-local: doc/api/html/index.html + +clean-local: + rm -rf doc/api + +# copied from MPD, disabled --jn +#--------------------------------------- +#install-data-local: doc/api/html/index.html +# $(mkinstalldirs) $(DESTDIR)$(docdir)/api/html +# $(INSTALL_DATA) -c -m 644 doc/api/html/*.* \ +# $(DESTDIR)$(docdir)/api/html +# +#uninstall-local: +# rm -f $(DESTDIR)$(docdir)/api/html/*.* +#--------------------------------------- +endif + # # Distribution # EXTRA_DIST = autogen.sh \ $(lyrics_plugins) \ - $(man_MANS) $(doc_DATA) + $(man_MANS) $(doc_DATA) doc/doxygen.conf \ + src/win/ncmpc_win32_rc.rc.in