diff options
Diffstat (limited to 'tests/test4/tuto-cairo/compil.sh')
-rwxr-xr-x | tests/test4/tuto-cairo/compil.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test4/tuto-cairo/compil.sh b/tests/test4/tuto-cairo/compil.sh new file mode 100755 index 0000000..f95aa68 --- /dev/null +++ b/tests/test4/tuto-cairo/compil.sh @@ -0,0 +1,5 @@ +#!/bin/bash -ex + +gcc -Wall -g -c gtkvumeter.c `pkg-config --cflags gtk+-2.0` +gcc -Wall -g -c main.c `pkg-config --cflags gtk+-2.0` +gcc -Wall -g -o test4 gtkvumeter.o main.o `pkg-config --libs gtk+-2.0` |