Mercurial > audlegacy-plugins
annotate src/mplayer/Makefile @ 182:6048abdac7d1 trunk
[svn] - add value replace filter, replaces a range of values with a different value
- add preset which demonstrates how this can be abused
author | nenolod |
---|---|
date | Wed, 01 Nov 2006 20:50:58 -0800 |
parents | b0c135dc8fbd |
children |
rev | line source |
---|---|
135
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
1 include ../../mk/rules.mk |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
2 include ../../mk/init.mk |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
3 |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
4 OBJECTIVE_LIBS = libmplayer$(SHARED_SUFFIX) |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
5 |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
6 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR) |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
7 |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
8 LIBADD += $(GTK_LIBS) |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
9 |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
10 SOURCES = xmmsmplayer.c common.c interface.c |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
11 |
139
b0c135dc8fbd
[svn] - make sure libxmmsmplayer is built with PICFLAGS
nenolod
parents:
135
diff
changeset
|
12 CFLAGS += $(GTK_CFLAGS) $(PICFLAGS) -I../../intl -I../.. |
b0c135dc8fbd
[svn] - make sure libxmmsmplayer is built with PICFLAGS
nenolod
parents:
135
diff
changeset
|
13 CXXFLAGS += $(GTK_CFLAGS) $(PICFLAGS) -I../../intl -I../.. |
135
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
14 |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
15 OBJECTS = ${SOURCES:.c=.o} |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
16 |
33d24bd94ccc
[svn] Adds mplayer controls the plugin pack. I don't know crap about
asheldon
parents:
diff
changeset
|
17 include ../../mk/objective.mk |