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