diff options
author | Andreas Obergrusberger <tradiaz@yahoo.de> | 2006-08-04 08:48:26 +0000 |
---|---|---|
committer | Andreas Obergrusberger <tradiaz@yahoo.de> | 2006-08-04 08:48:26 +0000 |
commit | e2a6f80bc6c71cfe6a68f419b2561d6d32252a88 (patch) | |
tree | efbfdabfda29a9f097e7324d44689129d60b7b89 /src/Makefile.am | |
parent | 22f156f5f87705a9b8cda9958179939d8b3fbdc9 (diff) | |
download | mpd-e2a6f80bc6c71cfe6a68f419b2561d6d32252a88.tar.gz mpd-e2a6f80bc6c71cfe6a68f419b2561d6d32252a88.tar.xz mpd-e2a6f80bc6c71cfe6a68f419b2561d6d32252a88.zip |
the updated sources
git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4543 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 78 |
1 files changed, 55 insertions, 23 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index f68653731..3d3fd6ed6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,27 +1,59 @@ -# +AM_CPPFLAGS = \ + $(GLIB_CFLAGS)\ + $(GTHREAD_CFLAGS)\ + $(libcurl_CFLAGS)\ + -DLOCALE_DIR=\""$(datadir)/locale"\"\ + -DSYSCONFDIR=\""$(sysconfdir)"\" + +ncmpc_headers = \ + libmpdclient.h\ + mpdclient.h\ + easy_download.h\ + options.h\ + conf.h\ + command.h\ + screen.h\ + screen_utils.h\ + list_window.h\ + colors.h\ + support.h\ + wreadln.h\ + strfsong.h\ + utils.h\ + ncmpc.h\ + screen_browse.h + # $Id$ -# bin_PROGRAMS = ncmpc -ncmpc_LDADD = $(GLIB_LIBS) - -AM_CPPFLAGS = $(GLIB_CFLAGS) -DLOCALE_DIR=\""$(datadir)/locale"\" -DSYSCONFDIR=\""$(sysconfdir)"\" - - -ncmpc_headers = libmpdclient.h mpdclient.h options.h conf.h command.h \ - screen.h screen_utils.h list_window.h colors.h support.h \ - wreadln.h strfsong.h utils.h ncmpc.h screen_browse.h - -ncmpc_SOURCES = libmpdclient.c main.c mpdclient.c options.c conf.c command.c \ - screen.c screen_utils.c screen_play.c screen_file.c \ - screen_artist.c screen_search.c screen_help.c \ - screen_keydef.c screen_clock.c \ - list_window.c colors.c support.c wreadln.c strfsong.c utils.c \ - $(ncmpc_headers) - - - - - - +ncmpc_SOURCES = \ + libmpdclient.c\ + main.c\ + mpdclient.c\ + options.c\ + conf.c\ + command.c\ + easy_download.c\ + screen.c\ + screen_utils.c\ + screen_play.c\ + screen_file.c\ + screen_artist.c\ + screen_search.c\ + screen_help.c\ + screen_lyrics.c\ + screen_keydef.c\ + screen_clock.c\ + list_window.c\ + colors.c\ + support.c\ + wreadln.c\ + strfsong.c\ + utils.c\ + $(ncmpc_headers) + +ncmpc_LDADD = \ + $(GLIB_LIBS)\ + $(GTHREAD_LIBS)\ + $(libcurl_LIBS) |