1 | ### enforce 32-bit build : 1=yes, 0=no |
---|
2 | M32?= 0 |
---|
3 | |
---|
4 | export M32 |
---|
5 | |
---|
6 | all: |
---|
7 | $(MAKE) -C lib/TLibVideoIO MM32=$(M32) |
---|
8 | $(MAKE) -C lib/TLibCommon MM32=$(M32) |
---|
9 | $(MAKE) -C lib/TLibDecoder MM32=$(M32) |
---|
10 | $(MAKE) -C lib/TLibEncoder MM32=$(M32) |
---|
11 | $(MAKE) -C lib/TLibRenderer MM32=$(M32) |
---|
12 | $(MAKE) -C lib/TLibExtractor MM32=$(M32) |
---|
13 | $(MAKE) -C lib/TAppCommon MM32=$(M32) |
---|
14 | $(MAKE) -C app/TAppDecoder MM32=$(M32) |
---|
15 | $(MAKE) -C app/TAppEncoder MM32=$(M32) |
---|
16 | $(MAKE) -C app/TAppRenderer MM32=$(M32) |
---|
17 | $(MAKE) -C app/TAppExtractor MM32=$(M32) |
---|
18 | $(MAKE) -C utils/annexBbytecount MM32=$(M32) |
---|
19 | $(MAKE) -C utils/convert_NtoMbit_YCbCr MM32=$(M32) |
---|
20 | |
---|
21 | |
---|
22 | debug: |
---|
23 | $(MAKE) -C lib/TLibVideoIO debug MM32=$(M32) |
---|
24 | $(MAKE) -C lib/TLibCommon debug MM32=$(M32) |
---|
25 | $(MAKE) -C lib/TLibDecoder debug MM32=$(M32) |
---|
26 | $(MAKE) -C lib/TLibEncoder debug MM32=$(M32) |
---|
27 | $(MAKE) -C lib/TLibRenderer debug MM32=$(M32) |
---|
28 | $(MAKE) -C lib/TLibExtractor debug MM32=$(M32) |
---|
29 | $(MAKE) -C lib/TAppCommon debug MM32=$(M32) |
---|
30 | $(MAKE) -C app/TAppDecoder debug MM32=$(M32) |
---|
31 | $(MAKE) -C app/TAppEncoder debug MM32=$(M32) |
---|
32 | $(MAKE) -C app/TAppRenderer debug MM32=$(M32) |
---|
33 | $(MAKE) -C app/TAppExtractor debug MM32=$(M32) |
---|
34 | $(MAKE) -C utils/annexBbytecount debug MM32=$(M32) |
---|
35 | $(MAKE) -C utils/convert_NtoMbit_YCbCr debug MM32=$(M32) |
---|
36 | |
---|
37 | |
---|
38 | release: |
---|
39 | $(MAKE) -C lib/TLibVideoIO release MM32=$(M32) |
---|
40 | $(MAKE) -C lib/TLibCommon release MM32=$(M32) |
---|
41 | $(MAKE) -C lib/TLibDecoder release MM32=$(M32) |
---|
42 | $(MAKE) -C lib/TLibEncoder release MM32=$(M32) |
---|
43 | $(MAKE) -C lib/TLibRenderer release MM32=$(M32) |
---|
44 | $(MAKE) -C lib/TLibExtractor release MM32=$(M32) |
---|
45 | $(MAKE) -C lib/TAppCommon release MM32=$(M32) |
---|
46 | $(MAKE) -C app/TAppDecoder release MM32=$(M32) |
---|
47 | $(MAKE) -C app/TAppEncoder release MM32=$(M32) |
---|
48 | $(MAKE) -C app/TAppRenderer release MM32=$(M32) |
---|
49 | $(MAKE) -C app/TAppExtractor release MM32=$(M32) |
---|
50 | $(MAKE) -C utils/annexBbytecount release MM32=$(M32) |
---|
51 | $(MAKE) -C utils/convert_NtoMbit_YCbCr release MM32=$(M32) |
---|
52 | |
---|
53 | |
---|
54 | clean: |
---|
55 | $(MAKE) -C lib/TLibVideoIO clean MM32=$(M32) |
---|
56 | $(MAKE) -C lib/TLibCommon clean MM32=$(M32) |
---|
57 | $(MAKE) -C lib/TLibDecoder clean MM32=$(M32) |
---|
58 | $(MAKE) -C lib/TLibEncoder clean MM32=$(M32) |
---|
59 | $(MAKE) -C lib/TLibRenderer clean MM32=$(M32) |
---|
60 | $(MAKE) -C lib/TLibExtractor clean MM32=$(M32) |
---|
61 | $(MAKE) -C lib/TAppCommon clean MM32=$(M32) |
---|
62 | $(MAKE) -C app/TAppDecoder clean MM32=$(M32) |
---|
63 | $(MAKE) -C app/TAppEncoder clean MM32=$(M32) |
---|
64 | $(MAKE) -C app/TAppRenderer clean MM32=$(M32) |
---|
65 | $(MAKE) -C app/TAppExtractor clean MM32=$(M32) |
---|
66 | $(MAKE) -C utils/annexBbytecount clean MM32=$(M32) |
---|
67 | $(MAKE) -C utils/convert_NtoMbit_YCbCr clean MM32=$(M32) |
---|