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]
22 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
25 # cmd/troff/troff.d/Makefile
28 include ..
/..
/Makefile.cmd
30 PROG
= troff ta makedev
35 MAKEDEVOBJS
= makedev.o
36 TROFFOBJS
= t10.o t6.o
37 COMMONOBJS
= hytab.o n1.o n2.o n3.o n4.o n5.o \
38 n7.o n8.o n9.o ni.o nii.o suftab.o
40 SRCS
= $(TAOBJS
:%.o
=%.c
) $(MAKEDEVOBJS
:%.o
=%.c
) \
41 $(TROFFOBJS
:%.o
=%.c
) $(COMMONOBJS
:%.o
=..
/%.c
)
43 TXTS
= README maketables troff.sh
45 CPPFLAGS
= -DUSG
-DINCORE
-I.
-I..
$(CPPFLAGS.master
)
47 CERRWARN
+= -_gcc
=-Wno-implicit-function-declaration
48 CERRWARN
+= -_gcc
=-Wno-unused-variable
49 CERRWARN
+= -_gcc
=-Wno-parentheses
50 CERRWARN
+= -_gcc
=-Wno-uninitialized
51 CERRWARN
+= -_gcc
=-Wno-extra
56 POFILES
= $(TROFFOBJS
:%.o
=%.po
) $(COMMONOBJS
:%.o
=..
/%.po
)
59 # conditional assignments
62 install := TARGET
= install
63 clean := TARGET
= clean
64 clobber := TARGET
= clobber
66 strip := TARGET
= strip
68 troff
:= POBJS
= $(COMMONOBJS
) $(TROFFOBJS
)
70 makedev
:= POBJS
= $(MAKEDEVOBJS
)
73 troff
:= LDLIBS
+= -lmapmalloc
75 # build rule for common source above
81 .PARALLEL
: $(COMMONOBJS
) $(TROFFOBJS
) $(TAOBJS
) $(MAKEDEVOBJS
)
83 all : $(PROG
) $(TXTS
) $(SUBDIRS
)
86 $(LINK.c
) -o
$@
$(POBJS
) $(LDLIBS
)
89 install: $(PROG
) $(ROOTPROG
) $(SUBDIRS
)
92 $(RM
) $(TAOBJS
) $(MAKEDEVOBJS
) $(TROFFOBJS
) $(COMMONOBJS
)
106 include ..
/..
/Makefile.targ
108 # additional dependency for clobber which is defined in Makefile.targ
112 @cd
$@
; pwd
; $(MAKE
) $(TARGET
)