gtk2/examples/table/Makefile

9 lines
119 B
Makefile
Raw Normal View History

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