forked from Matroska-Org/foundation-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.txt
50 lines (31 loc) · 1018 Bytes
/
build.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
1/ To build these sources you first need to build coremake:
* for UNIX + gcc:
cd corec/tools/coremake
gcc coremake.c -o ../../../coremake
cd ../../..
* for Windows in a Visual Studio shell:
cd corec/tools/coremake
cl coremake.c -o ..\..\..\coremake.exe
cd ../../..
2/ Generate the makefiles
* for gcc on Linux
./coremake gcc_linux
* for gcc on Mingw64
./coremake gcc_win64
* for Visual Studio on Windows
./coremake vs9_x64
3a/ build the spec tools
cd spectool
make
the result executables will be in <root>/release/<gcc_win64> with <gcc_win64> being the name of the
coremake target you used on step 2.
3b/ build mkvalidator
cd mkvalidator
make
the result executables will be in <root>/release/<gcc_win64> with <gcc_win64> being the name of the
coremake target you used on step 2.
3c/ build mkclean
cd mkclean
make
the result executables will be in <root>/release/<gcc_win64> with <gcc_win64> being the name of the
coremake target you used on step 2.