Mercurial > audlegacy
annotate Plugins/Input/cdaudio/Makefile.am @ 66:1f0fbef6be9e trunk
[svn] Added -I$(top_srcdir)/Plugins to Makefile.am - Fix compile errors.
author | msameer |
---|---|
date | Sat, 29 Oct 2005 09:13:49 -0700 |
parents | fa848bd484d8 |
children |
rev | line source |
---|---|
61 | 1 cdaudiosources = cdaudio.c \ |
2 configure.c \ | |
3 cdaudio.h \ | |
4 cdinfo.c \ | |
5 cdinfo.h \ | |
6 cddb.c \ | |
7 cddb.h \ | |
8 http.c \ | |
9 http.h | |
10 | |
11 if HAVE_CDROM | |
12 | |
13 cdaudioltlibs = libcdaudio.la | |
14 cdaudiobuildsources = $(cdaudiosources) | |
15 | |
16 else | |
17 | |
18 cdaudioltlibs = | |
19 cdaudiobuildsources = | |
20 | |
21 endif | |
22 | |
23 EXTRA_DIST = $(cdaudiosources) | |
24 | |
25 lib_LTLIBRARIES = $(cdaudioltlibs) | |
26 | |
27 libdir = $(plugindir)/$(INPUT_PLUGIN_DIR) | |
28 | |
66
1f0fbef6be9e
[svn] Added -I$(top_srcdir)/Plugins to Makefile.am - Fix compile errors.
msameer
parents:
61
diff
changeset
|
29 INCLUDES = @GTK_CFLAGS@ @GCONF_CFLAGS@ -I$(top_builddir)/intl -I$(top_srcdir) -I$(top_srcdir)/Plugins |
61 | 30 libcdaudio_la_LDFLAGS = @PLUGIN_LDFLAGS@ |
31 libcdaudio_la_LIBADD = @GTK_LIBS@ | |
32 libcdaudio_la_SOURCES = $(cdaudiobuildsources) | |
33 |