summaryrefslogtreecommitdiff
path: root/tests/test4/tuto-cairo/compil.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test4/tuto-cairo/compil.sh')
-rwxr-xr-xtests/test4/tuto-cairo/compil.sh5
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`