3057 Remove sgml util from cmd/man
[unleashed.git] / usr / src / cmd / man / src / Makefile
blob179e9742492e270dee621d70e832cf68c7c5ddd0
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
19 # CDDL HEADER END
21 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
22 # Use is subject to license terms.
24 # Makefile for cmd/man/src
27 include ../../Makefile.cmd
29 BINPROG = man
30 LIBPROG = getNAME
31 LIBSHELL = makewhatis
32 LNKPROG = catman apropos whatis
34 PROG = $(BINPROG) $(LIBPROG)
36 SRCS = man.c getNAME.c
38 SHSRCS = makewhatis.sh
40 OBJS = $(SRCS:%.c=%.o)
43 CLOBBERFILES += $(LNKPROG) $(LIBSHELL)
45 ROOTPROG = $(BINPROG:%=$(ROOTBIN)/%)
46 ROOTLIBPROG = $(LIBPROG:%=$(ROOTLIB)/%)
47 ROOTLIBSHELL = $(LIBSHELL:%=$(ROOTLIB)/%)
48 ROOTLNKPROG = $(LNKPROG:%=$(ROOTBIN)/%)
50 # for messaging catalog files
51 POFILE= src.po
52 POFILES= $(SRCS:%.c=%.po)
54 .KEEP_STATE :
56 all : $(PROG) $(LIBSHELL) $(LNKPROG)
58 makewhatis : $$@.sh
59 cat $@.sh > $@
61 install : all $(ROOTPROG) $(ROOTLIBPROG) \
62 $(ROOTLIBSHELL) $(ROOTLNKPROG)
64 $(ROOTLNKPROG) : $(ROOTBIN)/man
65 -$(RM) $@; $(LN) $(ROOTBIN)/man $@
67 $(LNKPROG) : man
68 -$(RM) $@; $(LN) man $@
70 catalog: $(POFILE)
72 $(POFILE): $(POFILES)
73 $(RM) $@
74 cat $(POFILES) > $@
77 clean :
79 strip :
80 $(STRIP) $(PROG)
82 lint : lint_SRCS
84 include ../../Makefile.targ