summaryrefslogtreecommitdiffstats
path: root/xsettings/Makefile
blob: cc126f94b0f2d08345c50ca5d0167bdb35a96f86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CFLAGS= -Wall -g `gtk-config --cflags` -g -Wall
LIBS=`gtk-config --libs`

manager_objects = manager.o gtk-utils.o xsettings-common.o xsettings-manager.o

client_objects = client.o xsettings-common.o xsettings-client.o

all: xsettings-manager xsettings-client

xsettings-manager: $(manager_objects)
	$(CC) -o $@ $(manager_objects) $(LIBS)

xsettings-client: $(client_objects)
	$(CC) -o $@ $(client_objects) $(LIBS)

clean:
	rm -f *.o xsettings-manager xsettings-client