1 # 2 # CDDL HEADER START 3 # 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. 7 # 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. 12 # 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] 18 # 19 # CDDL HEADER END 20 # 21 # 22 # Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23 # Use is subject to license terms. 24 # 25 # cmd/troff/troff.d/Makefile 26 # 27 28 include ../../Makefile.cmd 29 30 PROG = troff ta makedev 31 32 SUBDIRS = tmac.d 33 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 39 40 SRCS = $(TAOBJS:%.o=%.c) $(MAKEDEVOBJS:%.o=%.c) \ 41 $(TROFFOBJS:%.o=%.c) $(COMMONOBJS:%.o=../%.c) 42 43 TXTS = README maketables troff.sh 44 45 CPPFLAGS = -DUSG -DINCORE -I. -I.. $(CPPFLAGS.master) 46 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 52 53 # 54 # For message catalog 55 # 56 POFILES= $(TROFFOBJS:%.o=%.po) $(COMMONOBJS:%.o=../%.po) 57 POFILE= troff.d.po 58 59 # conditional assignments 60 61 all := TARGET= all 62 install := TARGET= install 63 clean := TARGET= clean 64 clobber := TARGET= clobber 65 lint := TARGET= lint 66 strip := TARGET= strip 67 68 troff:= POBJS= $(COMMONOBJS) $(TROFFOBJS) 69 ta:= POBJS= $(TAOBJS) 70 makedev:= POBJS= $(MAKEDEVOBJS) 71 72 ta:= LDLIBS += -lm 73 troff:= LDLIBS += -lmapmalloc 74 75 # build rule for common source above 76 %.o: ../%.c 77 $(COMPILE.c) $< 78 79 .KEEP_STATE: 80 81 .PARALLEL: $(COMMONOBJS) $(TROFFOBJS) $(TAOBJS) $(MAKEDEVOBJS) 82 83 all : $(PROG) $(TXTS) $(SUBDIRS) 84 85 $(PROG) : $$(POBJS) 86 $(LINK.c) -o $@ $(POBJS) $(LDLIBS) 87 $(POST_PROCESS) 88 89 install: $(PROG) $(ROOTPROG) $(SUBDIRS) 90 91 clean: $(SUBDIRS) 92 $(RM) $(TAOBJS) $(MAKEDEVOBJS) $(TROFFOBJS) $(COMMONOBJS) 93 94 catalog: $(POFILE) 95 96 $(POFILE): $(POFILES) 97 $(RM) $@ 98 cat $(POFILES) > $@ 99 100 101 strip : 102 $(STRIP $(PROG) 103 104 lint : lint_SRCS 105 106 include ../../Makefile.targ 107 108 # additional dependency for clobber which is defined in Makefile.targ 109 clobber: $(SUBDIRS) 110 111 $(SUBDIRS) : FRC 112 @cd $@; pwd; $(MAKE) $(TARGET) 113 114 FRC: