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