Print this page
5468 Missing dependencies in lib/Makefile
   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 #
  23 # Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.

  24 #
  25 
  26 MACH:sh=        uname -p
  27 
  28 sparc_XARCH=
  29 sparc64_XARCH=  -m64
  30 i386_XARCH=     
  31 i38664_XARCH=   -m64
  32 C_PICFLAGS=     -Kpic
  33 C_PICFLAGS64=   -Kpic
  34 
  35 PROGS=          dumpbind
  36 LIBS=           truss.so.1 symbindrep.so.1 perfcnt.so.1 who.so.1 bindings.so.1
  37 KSHSRC=         sotruss.ksh symbindrep.ksh perfcnt.ksh whocalls.ksh
  38 SCRIPTS=        $(KSHSRC:%.ksh=%)
  39 
  40 DIRS=           obj32 obj64 lib32 lib64
  41 
  42 sparc_LIBS32=   $(LIBS:%=lib32/%)
  43 sparc_LIBS64=   $(LIBS:%=lib64/%)


  57 CPPFLAGS +=     -Isrc -D__EXTENSIONS__
  58 LDFLAGS =       $(ZDEFS) $(ZTEXT) $(ZIGNORE)
  59 
  60 
  61 .KEEP_STATE:
  62 
  63 all:    $(DIRS) .WAIT $(ALLIBS) $(SCRIPTS) $(PROGS)
  64 
  65 %:      src/%.ksh
  66         $(RM) $@
  67         cat $< | sed -e s,/opt/SUNWonld/lib/,`pwd`/lib, | \
  68                 sed -e s,/usr/lib/link_audit/,`pwd`/lib, > $@
  69         chmod a+x $@
  70 
  71 obj32/%.o \
  72 obj64/%.o: src/%.c
  73         $(COMPILE.c) $< -o $@
  74 
  75 dumpbind: \
  76         obj32/dumpbind.o
  77         $(LINK.c) obj32/dumpbind.o -o $@
  78 
  79 lib32/bindings.so.1: \
  80         obj32/bindings.o obj32/env.o
  81         $(LINK.c) -G obj32/bindings.o obj32/env.o -o $@ $(LDLIBS)
  82 
  83 lib64/bindings.so.1: \
  84         obj64/bindings.o obj64/env.o
  85         $(LINK.c) -G obj64/bindings.o obj64/env.o -o $@ $(LDLIBS)
  86 
  87 lib32/perfcnt.so.1: \
  88         obj32/perfcnt.o obj32/hash.o obj32/env.o
  89         $(LINK.c) -G obj32/perfcnt.o obj32/hash.o obj32/env.o -o $@ $(LDLIBS)
  90 
  91 lib64/perfcnt.so.1: \
  92         obj64/perfcnt.o obj64/hash.o obj64/env.o
  93         $(LINK.c) -G obj64/perfcnt.o obj64/hash.o obj64/env.o -o $@ $(LDLIBS)
  94 
  95 lib32/symbindrep.so.1: \
  96         obj32/symbindrep.o obj32/env.o
  97         $(LINK.c) -G obj32/symbindrep.o obj32/env.o -o $@ $(LDLIBS)


   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 (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
  23 # Copyright 2015 RackTop Systems.
  24 #
  25 
  26 MACH:sh=        uname -p
  27 
  28 sparc_XARCH=
  29 sparc64_XARCH=  -m64
  30 i386_XARCH=     
  31 i38664_XARCH=   -m64
  32 C_PICFLAGS=     -Kpic
  33 C_PICFLAGS64=   -Kpic
  34 
  35 PROGS=          dumpbind
  36 LIBS=           truss.so.1 symbindrep.so.1 perfcnt.so.1 who.so.1 bindings.so.1
  37 KSHSRC=         sotruss.ksh symbindrep.ksh perfcnt.ksh whocalls.ksh
  38 SCRIPTS=        $(KSHSRC:%.ksh=%)
  39 
  40 DIRS=           obj32 obj64 lib32 lib64
  41 
  42 sparc_LIBS32=   $(LIBS:%=lib32/%)
  43 sparc_LIBS64=   $(LIBS:%=lib64/%)


  57 CPPFLAGS +=     -Isrc -D__EXTENSIONS__
  58 LDFLAGS =       $(ZDEFS) $(ZTEXT) $(ZIGNORE)
  59 
  60 
  61 .KEEP_STATE:
  62 
  63 all:    $(DIRS) .WAIT $(ALLIBS) $(SCRIPTS) $(PROGS)
  64 
  65 %:      src/%.ksh
  66         $(RM) $@
  67         cat $< | sed -e s,/opt/SUNWonld/lib/,`pwd`/lib, | \
  68                 sed -e s,/usr/lib/link_audit/,`pwd`/lib, > $@
  69         chmod a+x $@
  70 
  71 obj32/%.o \
  72 obj64/%.o: src/%.c
  73         $(COMPILE.c) $< -o $@
  74 
  75 dumpbind: \
  76         obj32/dumpbind.o
  77         $(LINK.c) obj32/dumpbind.o -o $@ $(LDLIBS)
  78 
  79 lib32/bindings.so.1: \
  80         obj32/bindings.o obj32/env.o
  81         $(LINK.c) -G obj32/bindings.o obj32/env.o -o $@ $(LDLIBS)
  82 
  83 lib64/bindings.so.1: \
  84         obj64/bindings.o obj64/env.o
  85         $(LINK.c) -G obj64/bindings.o obj64/env.o -o $@ $(LDLIBS)
  86 
  87 lib32/perfcnt.so.1: \
  88         obj32/perfcnt.o obj32/hash.o obj32/env.o
  89         $(LINK.c) -G obj32/perfcnt.o obj32/hash.o obj32/env.o -o $@ $(LDLIBS)
  90 
  91 lib64/perfcnt.so.1: \
  92         obj64/perfcnt.o obj64/hash.o obj64/env.o
  93         $(LINK.c) -G obj64/perfcnt.o obj64/hash.o obj64/env.o -o $@ $(LDLIBS)
  94 
  95 lib32/symbindrep.so.1: \
  96         obj32/symbindrep.o obj32/env.o
  97         $(LINK.c) -G obj32/symbindrep.o obj32/env.o -o $@ $(LDLIBS)