diff options
author | jkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-08-24 16:20:04 +0000 |
---|---|---|
committer | jkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-08-24 16:20:04 +0000 |
commit | 747d6d02f752ee9bd07686b1f27885d0717e4d2f (patch) | |
tree | 386743718f4d0934923acd147609f92ed582f630 /libmpeg2/Makefile | |
parent | ec55c409eecf1fca87569f730f631632aca98f1e (diff) | |
download | mpv-747d6d02f752ee9bd07686b1f27885d0717e4d2f.tar.bz2 mpv-747d6d02f752ee9bd07686b1f27885d0717e4d2f.tar.xz |
Enable mediaLib support for Solaris on UltraSPARC CPUs
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1681 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpeg2/Makefile')
-rw-r--r-- | libmpeg2/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libmpeg2/Makefile b/libmpeg2/Makefile index d3b9630b05..476e09b95e 100644 --- a/libmpeg2/Makefile +++ b/libmpeg2/Makefile @@ -3,9 +3,11 @@ LIBNAME = libmpeg2.a include ../config.mak -SRCS = header.c idct.c idct_mmx.c motion_comp.c motion_comp_mmx.c slice.c stats.c decode.c +SRCS = header.c idct.c idct_mmx.c idct_mlib.c \ + motion_comp.c motion_comp_mmx.c motion_comp_mlib.c \ + slice.c stats.c decode.c OBJS = $(SRCS:.c=.o) -INCLUDE = -I. -I../libvo -I.. $(EXTRA_INC) +INCLUDE = -I. -I../libvo -I.. $(EXTRA_INC) $(MLIB_INC) CFLAGS = $(OPTFLAGS) $(INCLUDE) -DMPG12PLAY .SUFFIXES: .c .o |