[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/Makefile between version 1.81 and 1.82

version 1.81, 1999/01/28 15:36:48 version 1.82, 1999/01/29 05:42:35
Line 30  SUBDIR+= gnu
Line 30  SUBDIR+= gnu
 # This is needed for libstdc++ and gen-params.  # This is needed for libstdc++ and gen-params.
 includes-gnu: includes-include includes-sys  includes-gnu: includes-include includes-sys
   
 # This little mess makes the includes and install targets  # Descend into the domestic tree if it exists AND
 # do the expected thing.  #  1) the target is clean, cleandir, or obj, OR
   #  2) the the target is install or includes AND NOT
   #    a) compiling only "exportable" code OR
   #    b) doing it as part of build.
   
 .if exists(domestic) && \  .if exists(domestic) && \
     (make(clean) || make(cleandir) || make(obj) || \      (make(clean) || make(cleandir) || make(obj) || \
     (!defined(_BUILD) && (make(includes) || make(install))))      ((make(includes) || make(install)) && \
       !(defined(EXPORTABLE_SYSTEM) || defined(_BUILD))))
 SUBDIR+= domestic  SUBDIR+= domestic
 .endif  .endif
   

Legend:
Removed from v.1.81  
changed lines
  Added in v.1.82

CVSweb <webmaster@jp.NetBSD.org>