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 avstring.h \ | 7 avstring.h \ |
7 avutil.h \ | 8 avutil.h \ |
8 base64.h \ | 9 base64.h \ |
9 common.h \ | 10 common.h \ |
10 crc.h \ | 11 crc.h \ |
11 fifo.h \ | 12 fifo.h \ |
12 intfloat_readwrite.h \ | 13 intfloat_readwrite.h \ |
13 log.h \ | 14 log.h \ |
14 lzo.h \ | 15 lzo.h \ |
15 mathematics.h \ | 16 mathematics.h \ |
(...skipping 27 matching lines...) Expand all Loading... |
43 rc4.o \ | 44 rc4.o \ |
44 sha.o \ | 45 sha.o \ |
45 tree.o \ | 46 tree.o \ |
46 utils.o \ | 47 utils.o \ |
47 | 48 |
48 TESTPROGS = adler32 aes base64 crc des lls md5 pca sha softfloat tree | 49 TESTPROGS = adler32 aes base64 crc des lls md5 pca sha softfloat tree |
49 TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo | 50 TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo |
50 | 51 |
51 DIRS = arm bfin sh4 x86 | 52 DIRS = arm bfin sh4 x86 |
52 | 53 |
| 54 ARCH_HEADERS = bswap.h intmath.h intreadwrite.h timer.h |
| 55 |
53 include $(SUBDIR)../subdir.mak | 56 include $(SUBDIR)../subdir.mak |
54 | 57 |
55 $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2 | 58 $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2 |
OLD | NEW |