mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-19 18:00:09 +00:00
ca21695fe9
Fri Nov 2 10:21:03 2001 Owen Taylor <otaylor@redhat.com> * examples/**/Makefile.am: Convert to use pkg-config rather than gtk-config. (#53375, Skip Montanaro)
9 lines
133 B
Makefile
9 lines
133 B
Makefile
|
|
CC = gcc
|
|
|
|
list: list.c
|
|
$(CC) `pkg-config --cflags gtk+-2.0` list.c -o list `pkg-config --libs gtk+-2.0`
|
|
|
|
clean:
|
|
rm -f *.o list
|