8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / sgs / yacc / Makefile.targ
blob9cbf1c440ff519583c5ee1f9da28a1e61939b68a
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 2015 Gary Mills
23 # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24 # Use is subject to license terms.
28 $(PROG): objs .WAIT $(POBJS)
29         $(LINK.c) $(POBJS) -o $@ $(LDLIBS)
30         $(POST_PROCESS)
32 # conditional assignment of default permissions for the installed
33 # DYNLIB/DYNLIBCCC.  Set here and in Makefile.mach, instead of Makefile.lib,
34 # because ROOTLIBDIR may be changed in the including makefile after it has
35 # included Makefile.lib.
37 $(ROOTLIBDIR)/$(DYNLIB) :=      FILEMODE= 755
38 $(ROOTLIBDIR)/$(DYNLIBCCC) :=   FILEMODE= 755
40 $(ROOTLIBDIR64)/$(DYNLIB) :=    FILEMODE= 755
41 $(ROOTLIBDIR64)/$(DYNLIBCCC) := FILEMODE= 755
43 # library install rules
44 $(ROOTLIBDIR)/%: %
45         $(INS.file)
46 $(ROOTLIBDIR64)/%: %
47         $(INS.file)
49 $(ROOTLIBDIR)/$(LIBLINKS): $(ROOTLIBDIR)/$(LIBLINKS)$(VERS)
50         $(INS.liblink)
51 $(ROOTLIBDIR64)/$(LIBLINKS): $(ROOTLIBDIR64)/$(LIBLINKS)$(VERS)
52         $(INS.liblink64)
54 $(ROOTLIBDIR)/$(LIBLINKSCCC): $(ROOTLIBDIR)/$(LIBLINKSCCC)$(VERS)
55         $(INS.liblinkccc)
56 $(ROOTLIBDIR64)/$(LIBLINKSCCC): $(ROOTLIBDIR64)/$(LIBLINKSCCC)$(VERS)
57         $(INS.liblinkccc64)
59 objs pics:
60         -@mkdir -p $@
62 $(LIBRARY): objs .WAIT $$(OBJS)
63         $(BUILD.AR)
64         $(POST_PROCESS_A)
66 $(DYNLIB): pics .WAIT $$(PICS)
67         $(BUILD.SO)
68         $(POST_PROCESS_SO)
70 $(DYNLIBCCC): pics .WAIT $$(PICS)
71         $(BUILDCCC.SO)
72         $(POST_PROCESS_SO)
74 objs/%.o pics/%.o:      ../common/%.c
75         $(COMPILE.c) -o $@ $<
76         $(POST_PROCESS_O)
78 # install rule for lint library target
79 $(ROOTLINTDIR)/%: ../common/%
80         $(INS.file)
82 $(DYNLINKLIBDIR)/%: %$(VERS)
83         $(INS.liblink)
85 clean:
86                 $(RM) $(POBJS) $(OBJS) $(PICS) $(CLEANFILES)
88 $(LINTLIB): $$(SRCS) 
89         $(LINT.c) -o $(LIBNAME) $(SRCS) > $(LINTOUT) 2>&1 
91 lintcheck: $$(SRCS)
92         $(LINT.c) $(LINTCHECKFLAGS) $(SRCS) $(LDLIBS)