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