mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-18 17:30:10 +00:00
14 lines
298 B
Makefile
14 lines
298 B
Makefile
|
|
||
|
CC = gcc
|
||
|
|
||
|
all: gettargets setselection
|
||
|
|
||
|
gettargets: gettargets.c
|
||
|
$(CC) `gtk-config --cflags` `gtk-config --libs` gettargets.c -o gettargets
|
||
|
|
||
|
setselection: setselection.c
|
||
|
$(CC) `gtk-config --cflags` `gtk-config --libs` setselection.c -o setselection
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o gettargets setselection
|