blob: c53cec3b625f4051c4d35873a77e9d52b8fa37f0 (
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` gettargets.c -o gettargets `gtk-config --libs`
setselection: setselection.c
$(CC) `gtk-config --cflags` setselection.c -o setselection `gtk-config --libs`
clean:
rm -f *.o gettargets setselection
|