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) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
  23 #
  24 
  25 LIBRARY=        libucb.a
  26 VERS=           .1
  27 
  28 PORTSYSOBJS=            \
  29         flock.o         \
  30         getdtblsize.o   \
  31         gethostid.o     \
  32         gethostname.o   \
  33         getpagesize.o   \
  34         gettimeofday.o  \
  35         killpg.o        \
  36         mctl.o          \
  37         reboot.o        \
  38         setpgrp.o       \
  39         wait3.o         \
  40         wait4.o
  41 
  42 PORTSTDIOOBJS=          \
  43         doprnt.o        \
  44         fopen.o         \
  45         fprintf.o       \
  46         printf.o        \
  47         sprintf.o       \
  48         vfprintf.o      \
  49         vprintf.o       \
  50         vsprintf.o
  51 
  52 PORTGENOBJS=            \
  53         _psignal.o      \
  54         bcmp.o          \
  55         bcopy.o         \
  56         bzero.o         \
  57         ftime.o         \
  58         getwd.o         \
  59         index.o         \
  60         nice.o          \
  61         nlist.o         \
  62         psignal.o       \
  63         rand.o          \
  64         readdir.o       \
  65         regex.o         \
  66         rindex.o        \
  67         scandir.o       \
  68         setbuffer.o     \
  69         siglist.o       \
  70         statfs.o        \
  71         times.o
  72 
  73 OBJECTS= $(SYSOBJS) $(PORTGENOBJS) $(PORTSYSOBJS) $(PORTSTDIOOBJS)
  74 
  75 # include library definitions
  76 include $(SRC)/lib/Makefile.lib
  77 
  78 ROOTLIBDIR=     $(ROOT)/usr/ucblib
  79 ROOTLIBDIR64=   $(ROOT)/usr/ucblib/$(MACH64)
  80 
  81 MAPFILES =      ../port/mapfile-vers
  82 
  83 SRCS=           $(PORTGENOBJS:%.o=../port/gen/%.c) \
  84                 $(PORTSTDIOOBJS:%.o=../port/stdio/%.c) \
  85                 $(PORTSYSOBJS:%.o=../port/sys/%.c)
  86 
  87 LIBS = $(DYNLIB)
  88 
  89 CFLAGS  +=      $(CCVERBOSE)
  90 CFLAGS64 +=     $(CCVERBOSE)
  91 LDLIBS +=       -lelf -lc
  92 
  93 CPPFLAGS = -D$(MACH) -I$(SRC)/ucbhead -I../inc \
  94                 -I../../../lib/libc/inc $(CPPFLAGS.master)
  95 
  96 CERRWARN +=     -_gcc=-Wno-unused-variable
  97 CERRWARN +=     -_gcc=-Wno-parentheses
  98 CERRWARN +=     -_gcc=-Wno-char-subscripts
  99 CERRWARN +=     -_gcc=-Wno-uninitialized
 100 
 101 ASFLAGS= -P -D__STDC__ -DLOCORE -D_SYS_SYS_S -D_ASM $(CPPFLAGS)
 102 
 103 pics/%.o:= ASFLAGS += $(AS_PICFLAGS)
 104 
 105 # libc method of building an archive, using AT&T ordering
 106 BUILD.AR= $(RM) $@ ; \
 107         $(AR) q $@ `$(LORDER) $(OBJECTS:%=$(DIR)/%)| $(TSORT)`
 108 
 109 .KEEP_STATE:
 110 
 111 all: $(LIBS)
 112 
 113 lint: lintcheck
 114 
 115 pics/%.o: ../port/gen/%.c
 116         $(COMPILE.c) -o $@ $<
 117         $(POST_PROCESS_O)
 118 pics/%.o: ../port/stdio/%.c
 119         $(COMPILE.c) -o $@ $<
 120         $(POST_PROCESS_O)
 121 pics/%.o: ../port/sys/%.c
 122         $(COMPILE.c) -o $@ $<
 123         $(POST_PROCESS_O)
 124 
 125 # shared (sparc/sparcv9/i386/amd64) platform-specific rule
 126 pics/%.o: sys/%.c
 127         $(COMPILE.c) -o $@ $<
 128         $(POST_PROCESS_O)
 129 
 130 pics/%.o: ../$(MACH)/sys/%.s
 131         $(BUILD.s)
 132         $(POST_PROCESS_O)
 133 
 134 #
 135 # Include library targets
 136 #
 137 include $(SRC)/lib/Makefile.targ