summaryrefslogtreecommitdiff
path: root/tests/test4/compil.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test4/compil.sh')
-rwxr-xr-xtests/test4/compil.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/test4/compil.sh b/tests/test4/compil.sh
index 4bab218..7679e1f 100755
--- a/tests/test4/compil.sh
+++ b/tests/test4/compil.sh
@@ -1,3 +1,6 @@
#!/bin/bash -ex
-gcc -g -c test4.c $(pkg-config --cflags gtk+-2.0)
-gcc -o test4 test4.o $(pkg-config --libs gtk+-2.0)
+gcc -Wall -g -c gtkvumeter.c $(pkg-config --cflags gtk+-2.0)
+gcc -Wall -g -c win_main.c $(pkg-config --cflags gtk+-2.0)
+gcc -Wall -g -c compute.c $(pkg-config --cflags gtk+-2.0)
+gcc -Wall -g -c test4.c $(pkg-config --cflags gtk+-2.0 gthread-2.0)
+gcc -Wall -o test4 gtkvumeter.o win_main.o compute.o test4.o $(pkg-config --libs gtk+-2.0 gthread-2.0)