mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-14 22:30:22 +00:00
9 lines
119 B
Makefile
9 lines
119 B
Makefile
|
|
||
|
CC = gcc
|
||
|
|
||
|
entry: entry.c
|
||
|
$(CC) `gtk-config --cflags` `gtk-config --libs` entry.c -o entry
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o entry
|