mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 19:30:10 +00:00
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
|