10 lines
142 B
Bash
10 lines
142 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
rm -f test test.o
|
||
|
gcc -static -o test main.c
|
||
|
#gcc -c -static test.o main.c && \
|
||
|
#ld -static -o test test.o && \
|
||
|
#rm test.o
|
||
|
|
||
|
./test
|