forked from AuroraMiddleware/gtk
c36ca76bb8
* Makefile.am: * examples/*: added the rest of the tutorial examples
9 lines
149 B
Makefile
9 lines
149 B
Makefile
|
|
CC = gcc
|
|
|
|
wheelbarrow: wheelbarrow.c
|
|
$(CC) `gtk-config --cflags` `gtk-config --libs` wheelbarrow.c -o wheelbarrow
|
|
|
|
clean:
|
|
rm -f *.o wheelbarrow
|