annotate mk/rules.mk.in @ 144:5dfc0e491ad3 trunk

[svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
author kiyoshi
date Mon, 30 Oct 2006 17:40:00 -0800
parents b8fd91c53d9b
children f3f77cbd58f3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1 @SET_MAKE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
2
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
3 srcdir ?= @srcdir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
4 top_srcdir ?= @top_srcdir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
5 VPATH ?= @srcdir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
6 pkgdatadir ?= $(datadir)/@PACKAGE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
7 pkglibdir ?= $(libdir)/@PACKAGE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
8 pkgincludedir ?= $(includedir)/@PACKAGE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
9 top_builddir ?= .
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
10 am__cd ?= CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
11 INSTALL ?= @INSTALL@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
12 install_sh_DATA ?= $(install_sh) -c -m 644
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
13 install_sh_PROGRAM ?= $(install_sh) -c
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
14 install_sh_SCRIPT ?= $(install_sh) -c
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
15 INSTALL_HEADER ?= $(INSTALL_DATA)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
16 transform ?= $(program_transform_name)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
17 NORMAL_INSTALL ?= :
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
18 PRE_INSTALL ?= :
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
19 POST_INSTALL ?= :
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
20 NORMAL_UNINSTALL ?= :
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
21 PRE_UNINSTALL ?= :
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
22 POST_UNINSTALL ?= :
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
23 build_triplet ?= @build@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
24 host_triplet ?= @host@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
25 target_triplet ?= @target@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
26 subdir ?= .
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
27 ACLOCAL_M4 ?= $(top_srcdir)/aclocal.m4
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
28 CONFIG_HEADER ?= config.h
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
29 CONFIG_CLEAN_FILES ?= audacious.1 audacious.spec audacious.pc \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
30 intl/Makefile
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
31 SOURCES =
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
32 DIST_SOURCES =
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
33 man1dir ?= $(mandir)/man1
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
34 am__installdirs ?= "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(pkgconfigdir)"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
35 NROFF ?= nroff
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
36 MANS ?= $(man_MANS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
37 am__vpath_adj_setup ?= srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
38 am__vpath_adj ?= case $$p in \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
39 $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
40 *) f=$$p;; \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
41 esac;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
42 am__strip_dir ?= `echo $$p | sed -e 's|^.*/||'`;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
43 pkgconfigDATA_INSTALL ?= $(INSTALL_DATA)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
44 DATA ?= $(pkgconfig_DATA)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
45 ETAGS ?= etags
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
46 CTAGS ?= ctags
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
47 DIST_SUBDIRS ?= $(SUBDIRS)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
48 DISTFILES ?= $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
49 distdir ?= $(PACKAGE)-$(VERSION)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
50 top_distdir ?= $(distdir)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
51 am__remove_distdir ?= \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
52 { test ! -d $(distdir) \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
53 || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
54 && rm -fr $(distdir); }; }
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
55 DIST_ARCHIVES ?= $(distdir).tar.gz
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
56 GZIP_ENV ?= --best
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
57 distuninstallcheck_listfiles ?= find . -type f -print
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
58 distcleancheck_listfiles ?= find . -type f -print
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
59 ACLOCAL ?= @ACLOCAL@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
60 ALLOCA ?= @ALLOCA@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
61 ALSA_CFLAGS ?= @ALSA_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
62 ALSA_LIBS ?= @ALSA_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
63 AMDEP_FALSE ?= @AMDEP_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
64 AMDEP_TRUE ?= @AMDEP_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
65 AMIDIPLUGBACKENDDIR ?= @AMIDIPLUGBACKENDDIR@
40
f15e55bc0e60 [svn] - fixed some issues for amidiplug compilation after migraton in audacious-plugins (backends were not compiled and amidiplug was uselessly installed twice on make install)
giacomo
parents: 33
diff changeset
66 AMIDIPLUG_BACKENDS ?= @AMIDIPLUG_BACKENDS@
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
67 AMTAR ?= @AMTAR@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
68 AR ?= @AR@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
69 ARCH_DEFINES ?= @ARCH_DEFINES@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
70 ARCH_X86_FALSE ?= @ARCH_X86_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
71 ARCH_X86_TRUE ?= @ARCH_X86_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
72 ARTSC_CFLAGS ?= @ARTSC_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
73 ARTSC_LIBS ?= @ARTSC_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
74 AUTOCONF ?= @AUTOCONF@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
75 AUTOHEADER ?= @AUTOHEADER@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
76 AUTOMAKE ?= @AUTOMAKE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
77 AWK ?= @AWK@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
78 BEEP_DEFINES ?= @BEEP_DEFINES@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
79 BEEP_PATH ?= @BEEP_PATH@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
80 BINIO_CFLAGS ?= @BINIO_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
81 BINIO_LIBS ?= @BINIO_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
82 BUILDERS_INCLUDES ?= @BUILDERS_INCLUDES@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
83 BUILDERS_LDFLAGS ?= @BUILDERS_LDFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
84 BUILD_INCLUDED_LIBINTL ?= @BUILD_INCLUDED_LIBINTL@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
85 CATOBJEXT ?= @CATOBJEXT@
88
80a28e538008 [svn] - Replace ?= at CFLAGS, CPPFLAGS and CXXFLAGS with +=
js
parents: 48
diff changeset
86 CC = @CC@
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
87 CCAS ?= @CCAS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
88 CCASFLAGS ?= @CCASFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
89 CCDEPMODE ?= @CCDEPMODE@
88
80a28e538008 [svn] - Replace ?= at CFLAGS, CPPFLAGS and CXXFLAGS with +=
js
parents: 48
diff changeset
90 CFLAGS += @CFLAGS@
80a28e538008 [svn] - Replace ?= at CFLAGS, CPPFLAGS and CXXFLAGS with +=
js
parents: 48
diff changeset
91 CPP = @CPP@
80a28e538008 [svn] - Replace ?= at CFLAGS, CPPFLAGS and CXXFLAGS with +=
js
parents: 48
diff changeset
92 CPPFLAGS += @CPPFLAGS@
80a28e538008 [svn] - Replace ?= at CFLAGS, CPPFLAGS and CXXFLAGS with +=
js
parents: 48
diff changeset
93 CXX = @CXX@
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
94 CXXCPP ?= @CXXCPP@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
95 CXXDEPMODE ?= @CXXDEPMODE@
88
80a28e538008 [svn] - Replace ?= at CFLAGS, CPPFLAGS and CXXFLAGS with +=
js
parents: 48
diff changeset
96 CXXFLAGS += @CXXFLAGS@
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
97 CYGPATH_W ?= @CYGPATH_W@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
98 DATADIRNAME ?= @DATADIRNAME@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
99 DCT64 ?= @DCT64@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
100 DEFS ?= @DEFS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
101 DEPDIR ?= @DEPDIR@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
102 ECHO ?= @ECHO@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
103 ECHO_C ?= @ECHO_C@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
104 ECHO_N ?= @ECHO_N@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
105 ECHO_T ?= @ECHO_T@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
106 EFFECT_PLUGINS ?= @EFFECT_PLUGINS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
107 EFFECT_PLUGIN_DIR ?= @EFFECT_PLUGIN_DIR@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
108 EGREP ?= @EGREP@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
109 ENABLE_AAC_FALSE ?= @ENABLE_AAC_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
110 ENABLE_AAC_TRUE ?= @ENABLE_AAC_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
111 ENABLE_AMIDIPLUG_FALSE ?= @ENABLE_AMIDIPLUG_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
112 ENABLE_AMIDIPLUG_TRUE ?= @ENABLE_AMIDIPLUG_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
113 ENABLE_CROSSFADE_FALSE ?= @ENABLE_CROSSFADE_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
114 ENABLE_CROSSFADE_TRUE ?= @ENABLE_CROSSFADE_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
115 ENABLE_MPG123_FALSE ?= @ENABLE_MPG123_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
116 ENABLE_MPG123_TRUE ?= @ENABLE_MPG123_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
117 ENABLE_MUSEPACK_FALSE ?= @ENABLE_MUSEPACK_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
118 ENABLE_MUSEPACK_TRUE ?= @ENABLE_MUSEPACK_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
119 ENABLE_TIMIDITY_FALSE ?= @ENABLE_TIMIDITY_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
120 ENABLE_TIMIDITY_TRUE ?= @ENABLE_TIMIDITY_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
121 ENABLE_WMA_FALSE ?= @ENABLE_WMA_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
122 ENABLE_WMA_TRUE ?= @ENABLE_WMA_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
123 ESD_CFLAGS ?= @ESD_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
124 ESD_LIBS ?= @ESD_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
125 EXEEXT ?= @EXEEXT@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
126 FLUIDSYNTH_CFLAGS ?= @FLUIDSYNTH_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
127 FLUIDSYNTH_LIBS ?= @FLUIDSYNTH_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
128 GCONF_CFLAGS ?= @GCONF_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
129 GCONF_LIBS ?= @GCONF_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
130 GENCAT ?= @GENCAT@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
131 GENERAL_PLUGINS ?= @GENERAL_PLUGINS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
132 GENERAL_PLUGIN_DIR ?= @GENERAL_PLUGIN_DIR@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
133 GLIBC21 ?= @GLIBC21@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
134 GLIB_CFLAGS ?= @GLIB_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
135 GLIB_LIBS ?= @GLIB_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
136 GMODULE_CFLAGS ?= @GMODULE_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
137 GMODULE_LIBS ?= @GMODULE_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
138 GMSGFMT ?= @GMSGFMT@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
139 GNOMEVFS_CFLAGS ?= @GNOMEVFS_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
140 GNOMEVFS_LIBS ?= @GNOMEVFS_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
141 GTK_CFLAGS ?= @GTK_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
142 GTK_LIBS ?= @GTK_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
143 HARDSID_LDADD ?= @HARDSID_LDADD@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
144 HAVE_ADPLUG_FALSE ?= @HAVE_ADPLUG_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
145 HAVE_ADPLUG_TRUE ?= @HAVE_ADPLUG_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
146 HAVE_ALSA_FALSE ?= @HAVE_ALSA_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
147 HAVE_ALSA_TRUE ?= @HAVE_ALSA_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
148 HAVE_CDROM_FALSE ?= @HAVE_CDROM_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
149 HAVE_CDROM_TRUE ?= @HAVE_CDROM_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
150 HAVE_ESD_FALSE ?= @HAVE_ESD_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
151 HAVE_ESD_TRUE ?= @HAVE_ESD_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
152 HAVE_FLAC_FALSE ?= @HAVE_FLAC_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
153 HAVE_FLAC_TRUE ?= @HAVE_FLAC_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
154 HAVE_GCONF_FALSE ?= @HAVE_GCONF_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
155 HAVE_GCONF_TRUE ?= @HAVE_GCONF_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
156 HAVE_GNOME_VFS_FALSE ?= @HAVE_GNOME_VFS_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
157 HAVE_GNOME_VFS_TRUE ?= @HAVE_GNOME_VFS_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
158 HAVE_JACK_FALSE ?= @HAVE_JACK_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
159 HAVE_JACK_TRUE ?= @HAVE_JACK_TRUE@
144
5dfc0e491ad3 [svn] Null output plugin added; original code by Christian Birchinger <joker -at- gentoo.org>
kiyoshi
parents: 119
diff changeset
160 HAVE_NULL_TRUE ?= @HAVE_NULL_TRUE@
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
161 HAVE_LIBSAMPLERATE_FALSE ?= @HAVE_LIBSAMPLERATE_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
162 HAVE_LIBSAMPLERATE_TRUE ?= @HAVE_LIBSAMPLERATE_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
163 HAVE_LIBSNDFILE_FALSE ?= @HAVE_LIBSNDFILE_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
164 HAVE_LIBSNDFILE_TRUE ?= @HAVE_LIBSNDFILE_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
165 HAVE_LIBVISUAL_FALSE ?= @HAVE_LIBVISUAL_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
166 HAVE_LIBVISUAL_TRUE ?= @HAVE_LIBVISUAL_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
167 HAVE_LINUX_JOYSTICK_FALSE ?= @HAVE_LINUX_JOYSTICK_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
168 HAVE_LINUX_JOYSTICK_TRUE ?= @HAVE_LINUX_JOYSTICK_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
169 HAVE_LIRC_FALSE ?= @HAVE_LIRC_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
170 HAVE_LIRC_TRUE ?= @HAVE_LIRC_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
171 HAVE_MODPLUG_FALSE ?= @HAVE_MODPLUG_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
172 HAVE_MODPLUG_TRUE ?= @HAVE_MODPLUG_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
173 HAVE_OGGVORBIS_FALSE ?= @HAVE_OGGVORBIS_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
174 HAVE_OGGVORBIS_TRUE ?= @HAVE_OGGVORBIS_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
175 HAVE_OSS_FALSE ?= @HAVE_OSS_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
176 HAVE_OSS_TRUE ?= @HAVE_OSS_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
177 HAVE_SIDPLAY_FALSE ?= @HAVE_SIDPLAY_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
178 HAVE_SIDPLAY_TRUE ?= @HAVE_SIDPLAY_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
179 HAVE_SOLARIS_FALSE ?= @HAVE_SOLARIS_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
180 HAVE_SOLARIS_TRUE ?= @HAVE_SOLARIS_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
181 HAVE_SUN_FALSE ?= @HAVE_SUN_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
182 HAVE_SUN_TRUE ?= @HAVE_SUN_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
183 INPUT_PLUGINS ?= @INPUT_PLUGINS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
184 INPUT_PLUGIN_DIR ?= @INPUT_PLUGIN_DIR@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
185 INSTALL_DATA ?= @INSTALL_DATA@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
186 INSTALL_PROGRAM ?= @INSTALL_PROGRAM@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
187 INSTALL_SCRIPT ?= @INSTALL_SCRIPT@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
188 INSTALL_STRIP_PROGRAM ?= @INSTALL_STRIP_PROGRAM@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
189 INSTOBJEXT ?= @INSTOBJEXT@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
190 INTLBISON ?= @INTLBISON@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
191 INTLLIBS ?= @INTLLIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
192 INTLOBJS ?= @INTLOBJS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
193 INTL_LIBTOOL_SUFFIX_PREFIX ?= @INTL_LIBTOOL_SUFFIX_PREFIX@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
194 JACK_CFLAGS ?= @JACK_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
195 JACK_LIBS ?= @JACK_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
196 LDFLAGS ?= @LDFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
197 LIBBEEP_MAJOR_VERSION ?= @LIBBEEP_MAJOR_VERSION@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
198 LIBBEEP_MICRO_VERSION ?= @LIBBEEP_MICRO_VERSION@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
199 LIBBEEP_MINOR_VERSION ?= @LIBBEEP_MINOR_VERSION@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
200 LIBFLAC_CFLAGS ?= @LIBFLAC_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
201 LIBFLAC_LIBS ?= @LIBFLAC_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
202 LIBGLADE_CFLAGS ?= @LIBGLADE_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
203 LIBGLADE_LIBS ?= @LIBGLADE_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
204 LIBNMS_CFLAGS ?= @LIBNMS_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
205 LIBNMS_LIBS ?= @LIBNMS_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
206 LIBNMS_SRC ?= @LIBNMS_SRC@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
207 LIBICONV ?= @LIBICONV@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
208 LIBINTL ?= @LIBINTL@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
209 LIBOBJS ?= @LIBOBJS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
210 LIBS ?= @LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
211 LIBTOOL ?= @LIBTOOL@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
212 LIBVISUAL_CFLAGS ?= @LIBVISUAL_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
213 LIBVISUAL_LIBS ?= @LIBVISUAL_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
214 LN_S ?= @LN_S@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
215 LTLIBICONV ?= @LTLIBICONV@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
216 LTLIBINTL ?= @LTLIBINTL@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
217 LTLIBOBJS ?= @LTLIBOBJS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
218 MAKEINFO ?= @MAKEINFO@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
219 MKINSTALLDIRS ?= @MKINSTALLDIRS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
220 MSGFMT ?= @MSGFMT@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
221 MSGMERGE ?= @MSGMERGE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
222 OBJEXT ?= @OBJEXT@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
223 OGG_VORBIS_CFLAGS ?= @OGG_VORBIS_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
224 OGG_VORBIS_LIBS ?= @OGG_VORBIS_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
225 OSS_LIBS ?= @OSS_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
226 OUTPUT_PLUGINS ?= @OUTPUT_PLUGINS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
227 OUTPUT_PLUGIN_DIR ?= @OUTPUT_PLUGIN_DIR@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
228 PACKAGE ?= @PACKAGE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
229 PACKAGE_BUGREPORT ?= @PACKAGE_BUGREPORT@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
230 PACKAGE_NAME ?= @PACKAGE_NAME@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
231 PACKAGE_STRING ?= @PACKAGE_STRING@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
232 PACKAGE_TARNAME ?= @PACKAGE_TARNAME@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
233 PACKAGE_VERSION ?= @PACKAGE_VERSION@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
234 PATH_SEPARATOR ?= @PATH_SEPARATOR@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
235 PC_REQUIRES ?= @PC_REQUIRES@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
236 PKG_CONFIG ?= @PKG_CONFIG@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
237 PLUGIN_LDFLAGS ?= @PLUGIN_LDFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
238 POSUB ?= @POSUB@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
239 RANLIB ?= @RANLIB@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
240 RESID_LDADD ?= @RESID_LDADD@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
241 SAMPLERATE_CFLAGS ?= @SAMPLERATE_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
242 SAMPLERATE_LIBS ?= @SAMPLERATE_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
243 SDL_CFLAGS ?= @SDL_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
244 SDL_CONFIG ?= @SDL_CONFIG@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
245 SDL_LIBS ?= @SDL_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
246 SET_MAKE ?= @SET_MAKE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
247 SHELL ?= @SHELL@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
248 SIDPLAY1_INCLUDES ?= @SIDPLAY1_INCLUDES@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
249 SIDPLAY1_LDADD ?= @SIDPLAY1_LDADD@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
250 SIDPLAY2_INCLUDES ?= @SIDPLAY2_INCLUDES@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
251 SIDPLAY2_LDADD ?= @SIDPLAY2_LDADD@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
252 SNDFILE_CFLAGS ?= @SNDFILE_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
253 SNDFILE_LIBS ?= @SNDFILE_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
254 STRIP ?= @STRIP@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
255 TAGLIB_CFLAGS ?= @TAGLIB_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
256 TAGLIB_CONFIG ?= @TAGLIB_CONFIG@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
257 TAGLIB_LIBS ?= @TAGLIB_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
258 USE_INCLUDED_LIBINTL ?= @USE_INCLUDED_LIBINTL@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
259 USE_NLS ?= @USE_NLS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
260 USE_X86ASM_FALSE ?= @USE_X86ASM_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
261 USE_X86ASM_TRUE ?= @USE_X86ASM_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
262 VERSION ?= @VERSION@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
263 VISUALIZATION_PLUGINS ?= @VISUALIZATION_PLUGINS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
264 VISUALIZATION_PLUGIN_DIR ?= @VISUALIZATION_PLUGIN_DIR@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
265 XGETTEXT ?= @XGETTEXT@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
266 ac_ct_AR ?= @ac_ct_AR@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
267 ac_ct_CC ?= @ac_ct_CC@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
268 ac_ct_CXX ?= @ac_ct_CXX@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
269 ac_ct_RANLIB ?= @ac_ct_RANLIB@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
270 ac_ct_STRIP ?= @ac_ct_STRIP@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
271 am__fastdepCC_FALSE ?= @am__fastdepCC_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
272 am__fastdepCC_TRUE ?= @am__fastdepCC_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
273 am__fastdepCXX_FALSE ?= @am__fastdepCXX_FALSE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
274 am__fastdepCXX_TRUE ?= @am__fastdepCXX_TRUE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
275 am__include ?= @am__include@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
276 am__leading_dot ?= @am__leading_dot@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
277 am__quote ?= @am__quote@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
278 am__tar ?= @am__tar@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
279 am__untar ?= @am__untar@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
280 beepdir ?= @beepdir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
281 bindir ?= @bindir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
282 build ?= @build@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
283 build_alias ?= @build_alias@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
284 build_cpu ?= @build_cpu@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
285 build_os ?= @build_os@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
286 build_vendor ?= @build_vendor@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
287 datadir ?= @datadir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
288 datarootdir ?= @datarootdir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
289 exec_prefix ?= @exec_prefix@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
290 host ?= @host@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
291 host_alias ?= @host_alias@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
292 host_cpu ?= @host_cpu@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
293 host_os ?= @host_os@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
294 host_vendor ?= @host_vendor@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
295 includedir ?= @includedir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
296 infodir ?= @infodir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
297 install_sh ?= @install_sh@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
298 libdir ?= @libdir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
299 libexecdir ?= @libexecdir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
300 localedir ?= @localedir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
301 localstatedir ?= @localstatedir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
302 mandir ?= @mandir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
303 mkdir_p ?= @mkdir_p@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
304 oldincludedir ?= @oldincludedir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
305 plugindir ?= @plugindir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
306 pluginsubs ?= @pluginsubs@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
307 prefix ?= @prefix@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
308 program_transform_name ?= @program_transform_name@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
309 sbindir ?= @sbindir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
310 sharedstatedir ?= @sharedstatedir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
311 sysconfdir ?= @sysconfdir@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
312 target ?= @target@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
313 target_alias ?= @target_alias@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
314 target_cpu ?= @target_cpu@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
315 target_os ?= @target_os@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
316 target_vendor ?= @target_vendor@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
317 WAV_SNDFILE ?= @WAV_SNDFILE@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
318 VFS_BACKEND ?= @VFS_BACKEND@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
319 CONFIGDB_BACKEND ?= @CONFIGDB_BACKEND@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
320 CURL_CFLAGS ?= @CURL_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
321 CURL_LIBS ?= @CURL_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
322 CHARDET_LIBS ?= @CHARDET_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
323 SUBDIR_GUESS ?= @SUBDIR_GUESS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
324 LIBNOTIFY_CFLAGS ?= @LIBNOTIFY_CFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
325 LIBNOTIFY_LIBS ?= @LIBNOTIFY_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
326 XML_CPPFLAGS ?= @XML_CPPFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
327 XML_LIBS ?= @XML_LIBS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
328 CONTAINER_PLUGIN_DIR ?= @CONTAINER_PLUGIN_DIR@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
329 CONTAINER_PLUGINS ?= @CONTAINER_PLUGINS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
330 SHARED_SUFFIX ?= @SHARED_SUFFIX@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
331 PICFLAGS ?= @PICFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
332 PICLDFLAGS ?= @PICLDFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
333 LIBLDFLAGS ?= @LIBLDFLAGS@
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
334 AUDLDFLAGS ?= @AUDLDFLAGS@
110
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 88
diff changeset
335 WAVPACK_CFLAGS ?= @WAVPACK_CFLAGS@
6855fee890ff [svn] - autoconf support for wavpack plugin
nenolod
parents: 88
diff changeset
336 WAVPACK_LIBS ?= @WAVPACK_LIBS@
119
b8fd91c53d9b [svn] - typo :<
nenolod
parents: 118
diff changeset
337 XXF86VM_CFLAGS ?= @XXF86VM_CFLAGS@
b8fd91c53d9b [svn] - typo :<
nenolod
parents: 118
diff changeset
338 XXF86VM_LIBS ?= @XXF86VM_LIBS@