/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:
21
21
all: $(PROGS) $(DOCS)
22
22
 
23
23
%.5: %.xml
24
 
        $(DOCBOOKTOMAN) $^
 
24
        cd $(shell dirname $^); $(DOCBOOKTOMAN) $(shell basename $^)
25
25
 
26
26
%.8: %.xml
27
 
        $(DOCBOOKTOMAN) $^
 
27
        cd $(shell dirname $^); $(DOCBOOKTOMAN) $(shell basename $^)
28
28
 
29
29
%.8mandos: %.xml
30
 
        $(DOCBOOKTOMAN) $^
31
 
        -mv ./$(shell basename $@) $@ 2>/dev/null
 
30
        cd $(shell dirname $^); $(DOCBOOKTOMAN) $(shell basename $^)
32
31
 
33
32
mandos-client: mandos-client.o
34
33
        $(LINK.o) -lgnutls $(COMMON) $^ $(LOADLIBES) $(LDLIBS) -o $@