Print this page
10593 illumos build should not use kernel modules as link-editor input


  79 #       Default build targets.
  80 #
  81 .KEEP_STATE:
  82 
  83 def:            $(DEF_DEPS)
  84 
  85 all:            $(ALL_DEPS)
  86 
  87 clean:          $(CLEAN_DEPS)
  88 
  89 clobber:        $(CLOBBER_DEPS)
  90 
  91 lint:           $(LINT_DEPS)
  92 
  93 modlintlib:     $(MODLINTLIB_DEPS)
  94 
  95 clean.lint:     $(CLEAN_LINT_DEPS)
  96 
  97 install:        $(INSTALL_DEPS)
  98 
  99 $(CPULIB):      $(BINARY)
 100         $(BUILD.SO) $(BINARY)
 101 
 102 $(SYM_MOD):     $(UNIX_O) $(CPULIB)
 103         @echo "resolving symbols against unix.o"
 104         @(cd $(UNIX_DIR); pwd; \
 105             CPU_DIR=$(HERE) SYM_MOD=$(HERE)/$(SYM_MOD) $(MAKE) symcheck)
 106 
 107 #       Include common targets.
 108 #
 109 include $(UTSBASE)/$(PLATFORM)/Makefile.targ


  79 #       Default build targets.
  80 #
  81 .KEEP_STATE:
  82 
  83 def:            $(DEF_DEPS)
  84 
  85 all:            $(ALL_DEPS)
  86 
  87 clean:          $(CLEAN_DEPS)
  88 
  89 clobber:        $(CLOBBER_DEPS)
  90 
  91 lint:           $(LINT_DEPS)
  92 
  93 modlintlib:     $(MODLINTLIB_DEPS)
  94 
  95 clean.lint:     $(CLEAN_LINT_DEPS)
  96 
  97 install:        $(INSTALL_DEPS)
  98 
  99 $(CPULIB):      $(OBJECTS)
 100         $(BUILD.SO) $(OBJECTS)
 101 
 102 $(SYM_MOD):     $(UNIX_O) $(CPULIB)
 103         @echo "resolving symbols against unix.o"
 104         @(cd $(UNIX_DIR); pwd; \
 105             CPU_DIR=$(HERE) SYM_MOD=$(HERE)/$(SYM_MOD) $(MAKE) symcheck)
 106 
 107 #       Include common targets.
 108 #
 109 include $(UTSBASE)/$(PLATFORM)/Makefile.targ