5 lines
230 B
Bash
5 lines
230 B
Bash
|
#!/bin/sh
|
||
|
if [ ! -d run ]; then
|
||
|
mkdir run
|
||
|
fi
|
||
|
gcc -g threadsTest.c "../../../System Abstraction/linux/cdb_file.c" "../../../System Abstraction/linux/cdb_memroy.c" "../../../System Abstraction/linux/cdb_thread.c" -o run/threadsTest
|