mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 22:20:24 +00:00
e2a5219220
history of the evolution of the changes involved. Most of this is actually minor painting tweaks.
8 lines
128 B
Makefile
8 lines
128 B
Makefile
CC = gcc
|
|
|
|
filesel: filesel.c
|
|
$(CC) `gtk-config --cflags` `gtk-config --libs` filesel.c -o filesel
|
|
|
|
clean:
|
|
rm -f *.o filesel
|