blob: de7aaf708ace7d2a4d5daf4e67d516e923cac78d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|