annotate src/ffmpeg/Makefile @ 814:2eaaa3aa182b trunk

[svn] - make the whole thing compile. runtime linking is another story.
author nenolod
date Mon, 12 Mar 2007 13:00:06 -0700
parents 74abcb9cafae
children 07107d476f32
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents: 14
diff changeset
1 include ../../mk/rules.mk
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents: 14
diff changeset
2 include ../../mk/init.mk
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
3
814
2eaaa3aa182b [svn] - make the whole thing compile. runtime linking is another story.
nenolod
parents: 806
diff changeset
4 OBJECTIVE_LIBS = libffmpeg$(SHARED_SUFFIX)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
5
814
2eaaa3aa182b [svn] - make the whole thing compile. runtime linking is another story.
nenolod
parents: 806
diff changeset
6 SUBDIRS = libavcodec libavformat libavutil
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
7
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
8 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
9
814
2eaaa3aa182b [svn] - make the whole thing compile. runtime linking is another story.
nenolod
parents: 806
diff changeset
10 LIBADD = ./libavcodec/libavcodec.a ./libavutil/libavutil.a ./libavformat/libavformat.a $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS)
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
11
814
2eaaa3aa182b [svn] - make the whole thing compile. runtime linking is another story.
nenolod
parents: 806
diff changeset
12 SOURCES = ffmpeg.c
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
13
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
14 OBJECTS = ${SOURCES:.c=.o}
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
15
578
550c9e382cf8 [svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents: 388
diff changeset
16 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../.. -I./libffwma -std=c99
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
17
17
cf1054422f81 [svn] - fix a lot of paths
nenolod
parents: 14
diff changeset
18 include ../../mk/objective.mk