gtk2/examples/wheelbarrow/Makefile

9 lines
149 B
Makefile
Raw Normal View History

CC = gcc
wheelbarrow: wheelbarrow.c
$(CC) `gtk-config --cflags` `gtk-config --libs` wheelbarrow.c -o wheelbarrow
clean:
rm -f *.o wheelbarrow