[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/Makefile between version 1.122 and 1.123

version 1.122, 2004/01/03 14:08:52 version 1.123, 2004/01/23 18:21:13
Line 6 
Line 6 
 # The ``rm -rf''s used below are safe because rm doesn't follow symbolic  # The ``rm -rf''s used below are safe because rm doesn't follow symbolic
 # links.  # links.
   
 # Missing: mp.h  
   
   .include <bsd.own.mk>
   USE_GCC3?=No
   
   # Missing: mp.h
 FILES=  a.out.h ar.h assert.h bitstring.h blf.h bm.h bsd_auth.h cast.h \  FILES=  a.out.h ar.h assert.h bitstring.h blf.h bm.h bsd_auth.h cast.h \
         cpio.h ctype.h curses.h db.h dbm.h des.h dirent.h disktab.h \          cpio.h ctype.h curses.h db.h dbm.h des.h dirent.h disktab.h \
         dlfcn.h elf_abi.h err.h fnmatch.h fstab.h fts.h ftw.h getopt.h \          dlfcn.h elf_abi.h err.h fnmatch.h fstab.h fts.h ftw.h getopt.h \
Line 47 
Line 50 
 PRDIRS=  PRDIRS=
   
 # Directories with an includes target that use Makefile.bsd-wrapper  # Directories with an includes target that use Makefile.bsd-wrapper
 WDIRS=  ../usr.sbin/httpd ../gnu/egcs/libio ../gnu/egcs/libstdc++ \  WDIRS=  ../usr.sbin/httpd ../gnu/usr.bin/binutils
         ../gnu/egcs/libf2c ../gnu/egcs/libobjc ../gnu/egcs/gcc \  
         ../gnu/usr.bin/binutils  
   
 # Places using Makefile.bsd-wrapper that needs a prerequisite target met  # Places using Makefile.bsd-wrapper that needs a prerequisite target met
 # before includes  # before includes
 PWDIRS= ../usr.sbin/httpd ../gnu/egcs/libf2c ../gnu/usr.bin/binutils  PWDIRS= ../usr.sbin/httpd ../gnu/usr.bin/binutils
   
   .if ${USE_GCC3:L} == "yes"
   WDIRS+= ../gnu/lib/libstdc++ ../gnu/usr.bin/gcc ../gnu/lib/libobjc
   PWDIRS+= ../gnu/lib/libstdc++
   .else
   WDIRS+= ../gnu/egcs/libio ../gnu/egcs/libstdc++ \
           ../gnu/egcs/libf2c ../gnu/egcs/libobjc ../gnu/egcs/gcc
   PWDIRS+= ../gnu/egcs/libf2c
   .endif
   
 NOOBJ=  noobj  NOOBJ=  noobj
   
 # Change SYS_INCLUDE in bsd.own.mk to "symlinks" if you don't want copies  # Change SYS_INCLUDE in bsd.own.mk to "symlinks" if you don't want copies
 .include <bsd.own.mk>  
 SYS_INCLUDE?=   copies  SYS_INCLUDE?=   copies
 .if ${KERBEROS5:L} == "yes"  .if ${KERBEROS5:L} == "yes"
 RDIRS+= ../lib/libkrb5 ../lib/libgssapi ../lib/libkadm5srv  RDIRS+= ../lib/libkrb5 ../lib/libgssapi ../lib/libkadm5srv

Legend:
Removed from v.1.122  
changed lines
  Added in v.1.123