/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

* clients.conf.xml: Renamed to "mandos-clients.conf.xml".

* Makefile (DOCBOOKTOMAN, DOCS): New
  (all): Include $(DOCS)
  (%.5: %.xml, %.8: %.xml, %.8mandos: %.xml): New.
  (clean): Also remove $(DOCS)

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
 
14
16
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
15
18
 
16
19
objects=$(shell for p in $(PROGS); do echo $${p}.o; done)
17
20
 
18
 
all: $(PROGS)
 
21
all: $(PROGS) $(DOCS)
 
22
 
 
23
%.5: %.xml
 
24
        $(DOCBOOKTOMAN) $^
 
25
 
 
26
%.8: %.xml
 
27
        $(DOCBOOKTOMAN) $^
 
28
 
 
29
%.8mandos: %.xml
 
30
        $(DOCBOOKTOMAN) $^
 
31
        -mv ./$(shell basename $@) $@ 2>/dev/null
19
32
 
20
33
mandos-client: mandos-client.o
21
34
        $(LINK.o) -lgnutls $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
29
42
.PHONY : all clean distclean run-client run-server
30
43
 
31
44
clean:
32
 
        -rm --force $(PROGS) $(objects) core
 
45
        -rm --force $(PROGS) $(objects) $(DOCS) core
33
46
 
34
47
distclean: clean
35
48
mostlyclean: clean