mirror of
https://github.com/kgabis/parson.git
synced 2025-01-28 06:32:55 +08:00
6 lines
98 B
Bash
Executable File
6 lines
98 B
Bash
Executable File
#!/bin/bash
|
|
gcc tests.c parson.c -Wall -pedantic-errors -std=c89 -o test
|
|
./test
|
|
rm -f *.o
|
|
rm test
|