forked from AuroraMiddleware/gtk
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)
14 lines
333 B
Makefile
14 lines
333 B
Makefile
|
|
CC = gcc
|
|
|
|
all: gettargets setselection
|
|
|
|
gettargets: gettargets.c
|
|
$(CC) `pkg-config --cflags gtk+-2.0` gettargets.c -o gettargets `pkg-config --libs gtk+-2.0`
|
|
|
|
setselection: setselection.c
|
|
$(CC) `pkg-config --cflags gtk+-2.0` setselection.c -o setselection `pkg-config --libs gtk+-2.0`
|
|
|
|
clean:
|
|
rm -f *.o gettargets setselection
|