]> git.sur5r.net Git - openldap/blob - doc/man/man8/Make-template
Import of FreeBSD LDAP 3.3 Port
[openldap] / doc / man / man8 / Make-template
1 #-----------------------------------------------------------------------------
2 # Copyright (c) 1994 Regents of the University of Michigan.
3 # All rights reserved.
4 #
5 # Redistribution and use in source and binary forms are permitted
6 # provided that this notice is preserved and that due credit is given
7 # to the University of Michigan at Ann Arbor. The name of the University
8 # may not be used to endorse or promote products derived from this
9 # software without specific prior written permission. This software
10 # is provided ``as is'' without express or implied warranty.
11 #
12 #       LDAP man8 makefile
13 #
14 #-----------------------------------------------------------------------------
15
16 LDAPSRC= ../../..
17 SECT=8
18 INSTDIR=$(MANDIR)/man$(SECT)
19 VERSIONFILE = $(LDAPSRC)/build/version
20
21 all:    FORCE
22
23 install:        FORCE
24         -$(MKDIR) -p $(INSTDIR)
25         @TMPMAN=/tmp/ldapman.$$$$; \
26         VERSION=`$(CAT) $(VERSIONFILE)`; \
27         for page in *.$(SECT); do \
28             $(SED) -e 's%ETCDIR%$(RUNTIMEETCDIR)%' -e "s%LDVERSION%$$VERSION%" \
29                     $$page > $$TMPMAN; \
30             echo "installing $(INSTDIR)/$$page"; \
31             $(INSTALL) $(INSTALLFLAGS) -m 644 $$TMPMAN $(INSTDIR)/$$page; \
32             if [ -f "$$page.links" ]; then \
33                 for link in `$(CAT) $$page.links`; do \
34                     echo "installing $(INSTDIR)/$$link as link to $$page"; \
35                     ln -sf $$page.gz $(INSTDIR)/$$link.gz; \
36                 done; \
37             fi; \
38         done; \
39         $(RM) $$TMPMAN
40
41 clean:  FORCE
42
43 depend: FORCE
44
45 lint:   FORCE
46
47 5lint:  FORCE
48
49 links:
50         @$(LN) .src/*.$(SECT) .src/*links .