8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / troff / troff.d / Makefile
blobe94bea647d4ea250f95227f91eed969124bea8ea
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
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
32 SUBDIRS = tmac.d
34 TAOBJS = draw.o ta.o
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
54 # For message catalog
56 POFILES= $(TROFFOBJS:%.o=%.po) $(COMMONOBJS:%.o=../%.po)
57 POFILE= troff.d.po
59 # conditional assignments
61 all := TARGET= all
62 install := TARGET= install
63 clean := TARGET= clean
64 clobber := TARGET= clobber
65 lint := TARGET= lint
66 strip := TARGET= strip
68 troff:= POBJS= $(COMMONOBJS) $(TROFFOBJS)
69 ta:= POBJS= $(TAOBJS)
70 makedev:= POBJS= $(MAKEDEVOBJS)
72 ta:= LDLIBS += -lm
73 troff:= LDLIBS += -lmapmalloc
75 # build rule for common source above
76 %.o: ../%.c
77 $(COMPILE.c) $<
79 .KEEP_STATE:
81 .PARALLEL: $(COMMONOBJS) $(TROFFOBJS) $(TAOBJS) $(MAKEDEVOBJS)
83 all : $(PROG) $(TXTS) $(SUBDIRS)
85 $(PROG) : $$(POBJS)
86 $(LINK.c) -o $@ $(POBJS) $(LDLIBS)
87 $(POST_PROCESS)
89 install: $(PROG) $(ROOTPROG) $(SUBDIRS)
91 clean: $(SUBDIRS)
92 $(RM) $(TAOBJS) $(MAKEDEVOBJS) $(TROFFOBJS) $(COMMONOBJS)
94 catalog: $(POFILE)
96 $(POFILE): $(POFILES)
97 $(RM) $@
98 cat $(POFILES) > $@
101 strip :
102 $(STRIP $(PROG)
104 lint : lint_SRCS
106 include ../../Makefile.targ
108 # additional dependency for clobber which is defined in Makefile.targ
109 clobber: $(SUBDIRS)
111 $(SUBDIRS) : FRC
112 @cd $@; pwd; $(MAKE) $(TARGET)
114 FRC: