diff --git a/c/gtk-tutorial/helloworld/run.sh b/c/gtk-tutorial/helloworld/run.sh index 6d17970..cc8138d 100755 --- a/c/gtk-tutorial/helloworld/run.sh +++ b/c/gtk-tutorial/helloworld/run.sh @@ -1,3 +1,3 @@ #!/bin/bash -gcc -Wall -g 1.c -o helloworld `pkg-config --cflags gtk+-3.0` `pkg-config --libs gtk+-3.0` && ./helloworld +gcc -Wall -g helloworld.c -o helloworld `pkg-config --cflags gtk+-3.0` `pkg-config --libs gtk+-3.0` && ./helloworld