| OLD | NEW |
| 1 include $(SUBDIR)../config.mak | 1 include $(SUBDIR)../config.mak |
| 2 | 2 |
| 3 NAME = avutil | 3 NAME = avutil |
| 4 | 4 |
| 5 HEADERS = adler32.h \ | 5 HEADERS = adler32.h \ |
| 6 attributes.h \ | 6 attributes.h \ |
| 7 avstring.h \ | 7 avstring.h \ |
| 8 avutil.h \ | 8 avutil.h \ |
| 9 base64.h \ | 9 base64.h \ |
| 10 bswap.h \ | 10 bswap.h \ |
| 11 common.h \ | 11 common.h \ |
| 12 cpu.h \ |
| 12 crc.h \ | 13 crc.h \ |
| 13 error.h \ | 14 error.h \ |
| 14 eval.h \ | 15 eval.h \ |
| 15 fifo.h \ | 16 fifo.h \ |
| 16 intfloat_readwrite.h \ | 17 intfloat_readwrite.h \ |
| 17 intreadwrite.h \ | 18 intreadwrite.h \ |
| 18 lfg.h \ | 19 lfg.h \ |
| 19 log.h \ | 20 log.h \ |
| 20 lzo.h \ | 21 lzo.h \ |
| 21 mathematics.h \ | 22 mathematics.h \ |
| 22 md5.h \ | 23 md5.h \ |
| 23 mem.h \ | 24 mem.h \ |
| 24 pixdesc.h \ | 25 pixdesc.h \ |
| 25 pixfmt.h \ | 26 pixfmt.h \ |
| 26 random_seed.h \ | 27 random_seed.h \ |
| 27 rational.h \ | 28 rational.h \ |
| 28 sha1.h \ | 29 sha1.h \ |
| 29 | 30 |
| 30 BUILT_HEADERS = avconfig.h | 31 BUILT_HEADERS = avconfig.h |
| 31 | 32 |
| 32 OBJS = adler32.o \ | 33 OBJS = adler32.o \ |
| 33 aes.o \ | 34 aes.o \ |
| 34 avstring.o \ | 35 avstring.o \ |
| 35 base64.o \ | 36 base64.o \ |
| 37 cpu.o \ |
| 36 crc.o \ | 38 crc.o \ |
| 37 des.o \ | 39 des.o \ |
| 38 error.o \ | 40 error.o \ |
| 39 eval.o \ | 41 eval.o \ |
| 40 fifo.o \ | 42 fifo.o \ |
| 41 intfloat_readwrite.o \ | 43 intfloat_readwrite.o \ |
| 42 inverse.o \ | 44 inverse.o \ |
| 43 lfg.o \ | 45 lfg.o \ |
| 44 lls.o \ | 46 lls.o \ |
| 45 log.o \ | 47 log.o \ |
| 46 lzo.o \ | 48 lzo.o \ |
| 47 mathematics.o \ | 49 mathematics.o \ |
| 48 md5.o \ | 50 md5.o \ |
| 49 mem.o \ | 51 mem.o \ |
| 50 pixdesc.o \ | 52 pixdesc.o \ |
| 51 random_seed.o \ | 53 random_seed.o \ |
| 52 rational.o \ | 54 rational.o \ |
| 53 rc4.o \ | 55 rc4.o \ |
| 54 sha.o \ | 56 sha.o \ |
| 55 tree.o \ | 57 tree.o \ |
| 56 utils.o \ | 58 utils.o \ |
| 57 | 59 |
| 58 TESTPROGS = adler32 aes base64 crc des lls md5 pca sha softfloat tree | 60 OBJS-$(ARCH_ARM) += arm/cpu.o |
| 61 OBJS-$(ARCH_PPC) += ppc/cpu.o |
| 62 OBJS-$(ARCH_X86) += x86/cpu.o |
| 63 |
| 64 TESTPROGS = adler32 aes base64 cpu crc des lls md5 pca sha softfloat tree |
| 59 TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo | 65 TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo |
| 60 | 66 |
| 61 DIRS = arm bfin sh4 x86 | 67 DIRS = arm bfin sh4 x86 |
| 62 | 68 |
| 63 ARCH_HEADERS = bswap.h intmath.h intreadwrite.h timer.h | 69 ARCH_HEADERS = bswap.h intmath.h intreadwrite.h timer.h |
| 64 | 70 |
| 65 include $(SUBDIR)../subdir.mak | 71 include $(SUBDIR)../subdir.mak |
| 66 | 72 |
| 67 $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2 | 73 $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2 |
| OLD | NEW |