build.sh 243 Bytes
Newer Older
longpanda's avatar
longpanda committed
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

rm -f init

gcc -DMOUNT_NOMAIN  -Os -static *.c  -I. -lutil -lkiconv -o init

strip --strip-all init

if [ -e init ]; then
    echo -e "\n========= SUCCESS ==============\n"
else
    echo -e "\n========= FAILED ==============\n"
fi