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