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