blob: c7595a17bf0d811d83be0f7e19a4d6d3d75386be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
PACKAGE=xsettings
VERSION=0.2
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.html
xsettings-manager: $(manager_objects)
$(CC) -o $@ $(manager_objects) $(LIBS)
xsettings-client: $(client_objects)
$(CC) -o $@ $(client_objects) $(LIBS)
xsettings.html: xsettings.xml
xmlto html-nochunks $<
xsettings.ps: xsettings.xml
docbook2ps xsettings.xml
clean:
rm -f *.o xsettings-manager xsettings-client xsettings.html
dist:
distdir=$(PACKAGE)-$(VERSION) ; \
tag=`echo $$distdir | tr a-z.- A-Z__` ; \
cvs tag -F $$tag && \
cvs export -r $$tag -d $$distdir $(PACKAGE) && \
tar cvf - $$distdir | gzip -c --best > $$distdir.tar.gz && \
rm -rf $$distdir
distcheck: dist
distdir=$(PACKAGE)-$(VERSION) ; \
tar xvfz $$distdir.tar.gz && \
cd $$distdir && \
make && \
cd .. && \
rm -rf $$distdir
|