/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

  • Committer: Teddy Hogeborn
  • Date: 2008-08-08 23:28:55 UTC
  • mfrom: (24.1.25 mandos)
  • Revision ID: teddy@fukt.bsnet.se-20080808232855-2hcaxr9jwwmvetx4
* Makefile: Do DocBook manual conversion in a better way.

* mandos (main): Write a PID file.

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
        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 $^)
19
31
 
20
32
mandos-client: mandos-client.o
21
33
        $(LINK.o) -lgnutls $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@
29
41
.PHONY : all clean distclean run-client run-server
30
42
 
31
43
clean:
32
 
        -rm --force $(PROGS) $(objects) core
 
44
        -rm --force $(PROGS) $(objects) $(DOCS) core
33
45
 
34
46
distclean: clean
35
47
mostlyclean: clean