/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-09 01:39:09 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080809013909-n3i3ll1voycmmw7l
* clients.conf: Better comments.
  (foo): Commented out and changed into a better example client.
  (braxen_client): Removed.
  (bar): New commented-out example client.

* mandos: Changed all log messages to be unicode strings.
  (Client.fqdn): Renamed to "host".  All users and documentation
                 changed.
  (main): Exit immediately if no clients are defined.

* mandos.conf: Better comments.

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 $@