7 lines
63 B
Bash
7 lines
63 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
C=`ls ../src/*[^test\.c]*.c`
|
||
|
|
|
||
|
|
tcc -lrt -o plx $C
|
||
|
|
|