forked from longsy316/EasyRTMP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuildit
55 lines (52 loc) · 1.92 KB
/
Buildit
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
51
52
53
54
55
#!/bin/sh
usage()
{
echo "**************build stream from EasyRTMP_RTSP demo******************"
echo "1. build 32bit program ./Buildit rtsp i386 [target in i386]"
echo "2. build 64bit program ./Buildit rtsp x64 [target in x64]"
echo "3. clean up ./Buildit rtsp clean"
echo "-----------------------------------------------------------"
echo "**************build stream from EasyRTMP_Demo demo******************"
echo "4. build 32bit program ./Buildit demo i386 [target in i386]"
echo "5. build 64bit program ./Buildit demo x64 [target in x64]"
echo "6. clean up ./Buildit demo clean"
echo "-----------------------------------------------------------"
echo "-----------------------------------------------------------"
echo "**************build stream from EasyRTMP_FILE demo******************"
echo "4. build 32bit program ./Buildit file i386 [target in i386]"
echo "5. build 64bit program ./Buildit file x64 [target in x64]"
echo "6. clean up ./Buildit file clean"
echo "-----------------------------------------------------------"
}
build()
{
if [ "$1" = "clean" ] ; then
make -f nbproject/Makefile-hisiv100.mk QMAKE= SUBPROJECTS= .clean-conf
make -f nbproject/Makefile-i386.mk QMAKE= SUBPROJECTS= .clean-conf
make -f nbproject/Makefile-x64.mk QMAKE= SUBPROJECTS= .clean-conf
make -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .clean-conf
elif [ "$1" = "hisiv100" ] ; then
make -f nbproject/Makefile-hisiv100.mk QMAKE= SUBPROJECTS= .build-conf
elif [ "$1" = "x64" ] ; then
make -f nbproject/Makefile-x64.mk QMAKE= SUBPROJECTS= .build-conf
elif [ "$1" = "i386" ] ; then
make -f nbproject/Makefile-i386.mk QMAKE= SUBPROJECTS= .build-conf
else
usage;
fi
}
if [ "$1" = "rtsp" ] ; then
cd EasyRTMP_RTSP
build $2;
elif [ "$1" = "file" ] ; then
cd EasyRTMP_File
build $2;
elif [ "$1" = "demo" ] ; then
cd EasyRTMP_Demo
build $2;
elif [ "$1" = "sdk" ] ; then
cd EasyRTMP_SDK
build $2;
else
usage;
fi