1 2 3 4 5 6 7 8
CC = gcc helloworld2: helloworld2.c $(CC) `gtk-config --cflags` helloworld2.c -o helloworld2 `gtk-config --libs` clean: rm -f *.o helloworld2