[BACK]Return to bsd.own.mk CVS log [TXT][DIR] Up to [local] / src / share / mk

Diff for /src/share/mk/bsd.own.mk between version 1.13 and 1.14

version 1.13, 1996/11/24 02:47:41 version 1.14, 1997/02/18 15:52:36
Line 73 
Line 73 
   
 # don't try to generate PIC versions of libraries on machines  # don't try to generate PIC versions of libraries on machines
 # which don't support PIC.  # which don't support PIC.
 .if (${MACHINE_ARCH} == "alpha") || \  .if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "powerpc") || \
     (${MACHINE_ARCH} == "vax")      (${MACHINE_ARCH} == "vax")
 NOPIC=  NOPIC=
   .endif
   
   # don't try to generate PROFILED versions of libraries on machines
   # which don't support profiling.
   .if (${MACHINE_ARCH} == "powerpc")
   NOPROFILE=
 .endif  .endif
   
 # No lint, for now.  # No lint, for now.

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14