65 
  66 $(KMODS) config:        FRC
  67         @cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
  68 
  69 $(XMODS):       FRC
  70         @if [ -f $@/Makefile  ]; then \
  71                 cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET); \
  72         else \
  73                 true; \
  74         fi
  75 
  76 install_h check:        FRC
  77         @cd asm; pwd; $(MAKE) $(TARGET)
  78         @cd sys; pwd; $(MAKE) $(TARGET)
  79         @cd v7/sys; pwd; $(MAKE) $(TARGET)
  80         @cd v9/sys; pwd; $(MAKE) $(TARGET)
  81 
  82 #
  83 #       Full kernel lint target.
  84 #
  85 LINT_TARGET     = globallint
  86 
  87 globallint:
  88         @-$(ECHO) "\nFULL KERNEL: global crosschecks:"
  89         @-$(LINT) $(LINTFLAGS) $(LINT_LIBS) 2>&1 | $(LGREP.2)
  90 
  91 lint:   modlintlib .WAIT $(LINT_DEPS)
  92 
  93 include ../Makefile.targ
  | 
 
 
  65 
  66 $(KMODS) config:        FRC
  67         @cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
  68 
  69 $(XMODS):       FRC
  70         @if [ -f $@/Makefile  ]; then \
  71                 cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET); \
  72         else \
  73                 true; \
  74         fi
  75 
  76 install_h check:        FRC
  77         @cd asm; pwd; $(MAKE) $(TARGET)
  78         @cd sys; pwd; $(MAKE) $(TARGET)
  79         @cd v7/sys; pwd; $(MAKE) $(TARGET)
  80         @cd v9/sys; pwd; $(MAKE) $(TARGET)
  81 
  82 #
  83 #       Full kernel lint target.
  84 #
  85 LINT_TARGET     = # globallint
  86 
  87 globallint:
  88         @-$(ECHO) "\nFULL KERNEL: global crosschecks:"
  89         @-$(LINT) $(LINTFLAGS) $(LINT_LIBS) 2>&1 | $(LGREP.2)
  90 
  91 lint:   modlintlib .WAIT $(LINT_DEPS)
  92 
  93 include ../Makefile.targ
  |