Mercurial > audlegacy-plugins
annotate src/wavpack/Makefile @ 387:0c50f248ed10 trunk
[svn] - added AUDACIOUS_LIBS and AUDACIOUS_CFLAGS to makefiles to ensure that plugins are linked to libaudacious
author | giacomo |
---|---|
date | Sun, 17 Dec 2006 07:06:34 -0800 |
parents | ab24cfe495e0 |
children | ad8e44bcdf8a |
rev | line source |
---|---|
109 | 1 include ../../mk/rules.mk |
2 include ../../mk/init.mk | |
3 | |
4 OBJECTIVE_LIBS = libwavpack$(SHARED_SUFFIX) | |
5 | |
6 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR) | |
7 | |
8 SOURCES = tags.cxx ui.cxx libwavpack.cxx | |
9 | |
387
0c50f248ed10
[svn] - added AUDACIOUS_LIBS and AUDACIOUS_CFLAGS to makefiles to ensure that plugins are linked to libaudacious
giacomo
parents:
253
diff
changeset
|
10 LIBADD = -L/usr/local/lib $(WAVPACK_LIBS) $(AUDACIOUS_LIBS) |
109 | 11 |
387
0c50f248ed10
[svn] - added AUDACIOUS_LIBS and AUDACIOUS_CFLAGS to makefiles to ensure that plugins are linked to libaudacious
giacomo
parents:
253
diff
changeset
|
12 CXXFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(AUDACIOUS_CFLAGS) $(WAVPACK_CFLAGS) -I../../intl -I../.. |
109 | 13 |
253
ab24cfe495e0
[svn] Port to NewVFS file probe & add explicit cast to silence warning, thanks to spb.
chainsaw
parents:
111
diff
changeset
|
14 LDFLAGS += -lstdc++ |
ab24cfe495e0
[svn] Port to NewVFS file probe & add explicit cast to silence warning, thanks to spb.
chainsaw
parents:
111
diff
changeset
|
15 |
109 | 16 OBJECTS = ${SOURCES:.cxx=.o} |
17 | |
18 include ../../mk/objective.mk |