summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-05-27 13:36:02 +0000
committerDiego Biurrun <diego@biurrun.de>2007-05-27 13:36:02 +0000
commitdd4ca8914344cb14ef6529a2637e156726f8847d (patch)
treee4c42861fc634b19a4bcfa17dc1458a7827b28db /tests/Makefile
parent197b07f360cc692fcfd36007af9a3190c9928b96 (diff)
Fix seek_test compilation for out-of-tree builds.
Originally committed as revision 9135 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 29f9f2a8bd..075af1ff33 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -73,11 +73,8 @@ asynth1.sw: audiogen$(EXESUF)
%$(EXESUF): %.c
$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $<
-LIBAV = ../libavformat/libavformat.a ../libavcodec/libavcodec.a ../libavutil/libavutil.a
-
-#FIXME cleanup shit below
-seek_test$(EXESUF): seek_test.c $(LIBAV)
- $(CC) $(LDFLAGS) $(CFLAGS) -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libavutil -o $@ $< $(SRC_PATH)/libavformat/libavformat.a $(SRC_PATH)/libavcodec/libavcodec.a $(SRC_PATH)/libavutil/libavutil.a $(EXTRALIBS)
+seek_test$(EXESUF): seek_test.c
+ $(CC) $(LDFLAGS) $(CFLAGS) -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libavutil -o $@ $< $(BUILD_ROOT)/libavformat/libavformat.a $(BUILD_ROOT)/libavcodec/libavcodec.a $(BUILD_ROOT)/libavutil/libavutil.a $(EXTRALIBS)
distclean clean:
rm -rf vsynth1 vsynth2 data asynth1.sw *~