/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to Makefile

merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
CFLAGS=$(WARN) $(DEBUG) $(FORTIFY) $(COVERAGE) $(OPTIMIZE) $(LANGUAGE)
12
12
LDFLAGS=$(COVERAGE)
13
13
 
14
 
DOCBOOKTOMAN=xsltproc --nonet --param man.charmap.use.subset "0" --param make.year.ranges "1" --param make.single.year.ranges "1" --param man.output.quietly "1"
15
 
 
16
14
PROGS=mandos-client plugins.d/password-request plugins.d/password-prompt
17
 
DOCS=mandos.8 mandos-client.8mandos plugins.d/password-request.8mandos plugins.d/password-prompt.8mandos mandos.conf.5 mandos-clients.conf.5
18
15
 
19
16
objects=$(shell for p in $(PROGS); do echo $${p}.o; done)
20
17
 
21
 
all: $(PROGS) $(DOCS)
22
 
 
23
 
%.5: %.xml
24
 
        cd $(shell dirname $^); $(DOCBOOKTOMAN) $(shell basename $^)
25
 
 
26
 
%.8: %.xml
27
 
        cd $(shell dirname $^); $(DOCBOOKTOMAN) $(shell basename $^)
28
 
 
29
 
%.8mandos: %.xml
30
 
        cd $(shell dirname $^); $(DOCBOOKTOMAN) $(shell basename $^)
 
18
all: $(PROGS)
31
19
 
32
20
mandos-client: mandos-client.o
33
21
        $(LINK.o) -lgnutls $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
41
29
.PHONY : all clean distclean run-client run-server
42
30
 
43
31
clean:
44
 
        -rm --force $(PROGS) $(objects) $(DOCS) core
 
32
        -rm --force $(PROGS) $(objects) core
45
33
 
46
34
distclean: clean
47
35
mostlyclean: clean