forked from EasyDarwin/EasyAACEncoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuildit
More file actions
executable file
·27 lines (25 loc) · 1.05 KB
/
Copy pathBuildit
File metadata and controls
executable file
·27 lines (25 loc) · 1.05 KB
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
#!/bin/sh
usage()
{
echo "0. clean up ./Buildit clean"
echo "1. build 32bit program ./Buildit i386 [target in i386]"
echo "2. build 64bit program ./Buildit x64 [target in x64]"
#echo "3. build arm program for GM8126 ./Buildit arm [target in ARM]"
#echo "4. build arm program for Hisilicon3518 ./Buildit 3518 [target in hisiv100]"
}
if [ "$*" = "clean" ] ; then
#make -f nbproject/Makefile-ARM.mk QMAKE= SUBPROJECTS= .clean-conf
make -f nbproject/Makefile-i386.mk QMAKE= SUBPROJECTS= .clean-conf
#make -f nbproject/Makefile-hisiv100.mk QMAKE= SUBPROJECTS= .clean-conf
make -f nbproject/Makefile-x64.mk QMAKE= SUBPROJECTS= .clean-conf
elif [ "$*" = "i386" ] ; then
make -f nbproject/Makefile-i386.mk QMAKE= SUBPROJECTS= .build-conf
#elif [ "$*" = "arm" ] ; then
#make -f nbproject/Makefile-ARM.mk QMAKE= SUBPROJECTS= .build-conf
#elif [ "$*" = "3518" ] ; then
#make -f nbproject/Makefile-hisiv100.mk QMAKE= SUBPROJECTS= .build-conf
elif [ "$*" = "x64" ] ; then
make -f nbproject/Makefile-x64.mk QMAKE= SUBPROJECTS= .build-conf
else
usage;
fi