source: SHVCSoftware/branches/SHM-1.1-dev/build/linux/makefile

Last change on this file was 2, checked in by seregin, 12 years ago

Initial import by Vadim Seregin <vseregin@…>

File size: 1.9 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 utils/annexBbytecount       MM32=$(M32)
15        $(MAKE) -C utils/convert_NtoMbit_YCbCr MM32=$(M32)
16
17debug:
18        $(MAKE) -C lib/TLibVideoIO      debug MM32=$(M32)
19        $(MAKE) -C lib/TLibCommon       debug MM32=$(M32)
20        $(MAKE) -C lib/TLibDecoder      debug MM32=$(M32)
21        $(MAKE) -C lib/TLibEncoder      debug MM32=$(M32)
22        $(MAKE) -C lib/TAppCommon       debug MM32=$(M32)
23        $(MAKE) -C app/TAppDecoder      debug MM32=$(M32)
24        $(MAKE) -C app/TAppEncoder      debug MM32=$(M32)
25        $(MAKE) -C utils/annexBbytecount       debug MM32=$(M32)
26        $(MAKE) -C utils/convert_NtoMbit_YCbCr debug MM32=$(M32)
27
28release:
29        $(MAKE) -C lib/TLibVideoIO      release MM32=$(M32)
30        $(MAKE) -C lib/TLibCommon       release MM32=$(M32)
31        $(MAKE) -C lib/TLibDecoder      release MM32=$(M32)
32        $(MAKE) -C lib/TLibEncoder      release MM32=$(M32)
33        $(MAKE) -C lib/TAppCommon       release MM32=$(M32)
34        $(MAKE) -C app/TAppDecoder      release MM32=$(M32)
35        $(MAKE) -C app/TAppEncoder      release MM32=$(M32)
36        $(MAKE) -C utils/annexBbytecount       release MM32=$(M32)
37        $(MAKE) -C utils/convert_NtoMbit_YCbCr release MM32=$(M32)
38
39clean:
40        $(MAKE) -C lib/TLibVideoIO      clean MM32=$(M32)
41        $(MAKE) -C lib/TLibCommon       clean MM32=$(M32)
42        $(MAKE) -C lib/TLibDecoder      clean MM32=$(M32)
43        $(MAKE) -C lib/TLibEncoder      clean MM32=$(M32)
44        $(MAKE) -C lib/TAppCommon       clean MM32=$(M32)
45        $(MAKE) -C app/TAppDecoder      clean MM32=$(M32)
46        $(MAKE) -C app/TAppEncoder      clean MM32=$(M32)
47        $(MAKE) -C utils/annexBbytecount       clean MM32=$(M32)
48        $(MAKE) -C utils/convert_NtoMbit_YCbCr clean MM32=$(M32)
Note: See TracBrowser for help on using the repository browser.