source: SHVCSoftware/branches/SHM-3.1-dev/build/linux/makefile @ 713

Last change on this file since 713 was 349, checked in by seregin, 11 years ago

merge SHM-3.0-dev branch

File size: 2.0 KB
Line 
1### enforce 32-bit build : 1=yes, 0=no
2M32?= 0
3 
4export M32
5
6all:
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/TAppCommon       MM32=$(M32)
12        $(MAKE) -C app/TAppDecoder      MM32=$(M32)
13        $(MAKE) -C app/TAppEncoder      MM32=$(M32)
14        $(MAKE) -C app/TAppDownConvert  MM32=$(M32)     
15        $(MAKE) -C utils/annexBbytecount       MM32=$(M32)
16        $(MAKE) -C utils/convert_NtoMbit_YCbCr MM32=$(M32)
17
18debug:
19        $(MAKE) -C lib/TLibVideoIO      debug MM32=$(M32)
20        $(MAKE) -C lib/TLibCommon       debug MM32=$(M32)
21        $(MAKE) -C lib/TLibDecoder      debug MM32=$(M32)
22        $(MAKE) -C lib/TLibEncoder      debug MM32=$(M32)
23        $(MAKE) -C lib/TAppCommon       debug MM32=$(M32)
24        $(MAKE) -C app/TAppDecoder      debug MM32=$(M32)
25        $(MAKE) -C app/TAppEncoder      debug MM32=$(M32)
26        $(MAKE) -C app/TAppDownConvert  debug MM32=$(M32)
27        $(MAKE) -C utils/annexBbytecount       debug MM32=$(M32)
28        $(MAKE) -C utils/convert_NtoMbit_YCbCr debug MM32=$(M32)
29
30release:
31        $(MAKE) -C lib/TLibVideoIO      release MM32=$(M32)
32        $(MAKE) -C lib/TLibCommon       release MM32=$(M32)
33        $(MAKE) -C lib/TLibDecoder      release MM32=$(M32)
34        $(MAKE) -C lib/TLibEncoder      release MM32=$(M32)
35        $(MAKE) -C lib/TAppCommon       release MM32=$(M32)
36        $(MAKE) -C app/TAppDecoder      release MM32=$(M32)
37        $(MAKE) -C app/TAppEncoder      release MM32=$(M32)
38        $(MAKE) -C app/TAppDownConvert      release MM32=$(M32)
39        $(MAKE) -C utils/annexBbytecount       release MM32=$(M32)
40        $(MAKE) -C utils/convert_NtoMbit_YCbCr release MM32=$(M32)
41
42clean:
43        $(MAKE) -C lib/TLibVideoIO      clean MM32=$(M32)
44        $(MAKE) -C lib/TLibCommon       clean MM32=$(M32)
45        $(MAKE) -C lib/TLibDecoder      clean MM32=$(M32)
46        $(MAKE) -C lib/TLibEncoder      clean MM32=$(M32)
47        $(MAKE) -C lib/TAppCommon       clean MM32=$(M32)
48        $(MAKE) -C app/TAppDecoder      clean MM32=$(M32)
49        $(MAKE) -C app/TAppEncoder      clean MM32=$(M32)
50        $(MAKE) -C app/TAppDownConvert  clean MM32=$(M32)
51        $(MAKE) -C utils/annexBbytecount       clean MM32=$(M32)
52        $(MAKE) -C utils/convert_NtoMbit_YCbCr clean MM32=$(M32)
Note: See TracBrowser for help on using the repository browser.