diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-05-23 20:29:36 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-05-23 20:29:36 +0000 |
commit | f184683552090cc9d38a7b1c8d27bb348a2ef7b4 (patch) | |
tree | fd0751ccea3cd3b4ae4c679e928df172ef805fae /postproc/Makefile | |
parent | b76ee469c75a79a0648bee7208f75544f3add171 (diff) | |
download | ffmpeg-f184683552090cc9d38a7b1c8d27bb348a2ef7b4.tar.gz |
cs_test cleanup and fix compilation if gui enabled
Originally committed as revision 10175 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/Makefile')
-rw-r--r-- | postproc/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/postproc/Makefile b/postproc/Makefile index c6b5896316..78e0b7e6fd 100644 --- a/postproc/Makefile +++ b/postproc/Makefile @@ -5,7 +5,6 @@ SWSLIB = libswscale.a SWSSRCS=swscale.c rgb2rgb.c yuv2rgb.c SWSOBJS=$(SWSSRCS:.c=.o) -CS_TEST_OBJS=cs_test.o rgb2rgb.o ../cpudetect.o ../mp_msg.o ../libvo/aclib.o CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. $(EXTRA_INC) # -I/usr/X11R6/include/ @@ -33,8 +32,8 @@ dep: depend depend: $(CC) -MM $(CFLAGS) $(SWSSRCS) 1>.depend -cs_test: $(CS_TEST_OBJS) - $(CC) $(CS_TEST_OBJS) -o cs_test +cs_test: cs_test.o $(SWSLIB) + $(CC) cs_test.o $(SWSLIB) ../cpudetect.o -DFOR_MENCODER ../mp_msg.c -o cs_test -W -Wall swscale-example: swscale-example.o $(SWSLIB) $(CC) swscale-example.o $(SWSLIB) ../libmpcodecs/img_format.o -lm -o swscale-example -W -Wall |