mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 19:30:10 +00:00
9 lines
149 B
Makefile
9 lines
149 B
Makefile
|
|
||
|
CC = gcc
|
||
|
|
||
|
aspectframe: aspectframe.c
|
||
|
$(CC) `gtk-config --cflags` `gtk-config --libs` aspectframe.c -o aspectframe
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o aspectframe
|