comparison Makefile @ 6183:b65c4378ecfe libavcodec

whitespace and sorting cosmetics
author diego
date Sun, 27 Jan 2008 14:52:58 +0000
parents 45b44718ff31
children b9d115ed13fa
comparison
equal deleted inserted replaced
6182:45b44718ff31 6183:b65c4378ecfe
469 sparc/*.o sparc/*~ \ 469 sparc/*.o sparc/*~ \
470 apiexample $(TESTS) 470 apiexample $(TESTS)
471 471
472 TESTS = $(addsuffix -test, cabac dct eval fft h264 imgresample rangecoder snow) 472 TESTS = $(addsuffix -test, cabac dct eval fft h264 imgresample rangecoder snow)
473 ifeq ($(ARCH_X86),yes) 473 ifeq ($(ARCH_X86),yes)
474 TESTS+= cpuid-test motion-test 474 TESTS += cpuid-test motion-test
475 endif 475 endif
476 476
477 tests: apiexample $(TESTS) 477 tests: apiexample $(TESTS)
478 478
479 cpuid-test: i386/cputest.c
479 apiexample: apiexample.o $(LIBNAME) 480 apiexample: apiexample.o $(LIBNAME)
480
481 cpuid-test: i386/cputest.c
482
483 dct-test: dct-test.o fdctref.o $(LIBNAME) 481 dct-test: dct-test.o fdctref.o $(LIBNAME)
484
485 fft-test: fft-test.o $(LIBNAME) 482 fft-test: fft-test.o $(LIBNAME)
486
487 motion-test: motion-test.o $(LIBNAME) 483 motion-test: motion-test.o $(LIBNAME)
488 484
489 %-test: %.c $(LIBNAME) 485 %-test: %.c $(LIBNAME)
490 $(CC) $(CFLAGS) $(LDFLAGS) -DTEST -o $@ $^ $(EXTRALIBS) 486 $(CC) $(CFLAGS) $(LDFLAGS) -DTEST -o $@ $^ $(EXTRALIBS)
491 487