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


  93 #       Default build targets.
  94 #
  95 .KEEP_STATE:
  96 
  97 def:            $(DEF_DEPS)
  98 
  99 all:            $(ALL_DEPS)
 100 
 101 clean:          $(CLEAN_DEPS)
 102 
 103 clobber:        $(CLOBBER_DEPS)
 104 
 105 lint:           $(LINT_DEPS)
 106 
 107 modlintlib:     $(MODLINTLIB_DEPS)
 108 
 109 clean.lint:     $(CLEAN_LINT_DEPS)
 110 
 111 install:        $(INSTALL_DEPS)
 112 
 113 $(CPULIB):      $(BINARY)
 114         $(BUILD.SO) $(BINARY)
 115 
 116 $(SYM_MOD):     $(UNIX_O) $(CPULIB)
 117         @echo "resolving symbols against unix.o"
 118         @echo $(UNIX_DIR)
 119         @echo $(OBJS_DIR)
 120         @(cd $(UNIX_DIR); pwd; \
 121             CPU_DIR=$(HERE) SYM_MOD=$(HERE)/$(SYM_MOD) $(MAKE) symcheck)
 122 
 123 $(ROOTSOFTLINKS): $(ROOTMODULE)
 124         $(RM) $@; $(SYMLINK) $(MODULE) $@
 125 
 126 #       Include common targets.
 127 #
 128 include $(UTSBASE)/sun4u/serengeti/Makefile.targ


  93 #       Default build targets.
  94 #
  95 .KEEP_STATE:
  96 
  97 def:            $(DEF_DEPS)
  98 
  99 all:            $(ALL_DEPS)
 100 
 101 clean:          $(CLEAN_DEPS)
 102 
 103 clobber:        $(CLOBBER_DEPS)
 104 
 105 lint:           $(LINT_DEPS)
 106 
 107 modlintlib:     $(MODLINTLIB_DEPS)
 108 
 109 clean.lint:     $(CLEAN_LINT_DEPS)
 110 
 111 install:        $(INSTALL_DEPS)
 112 
 113 $(CPULIB):      $(OBJECTS)
 114         $(BUILD.SO) $(OBJECTS)
 115 
 116 $(SYM_MOD):     $(UNIX_O) $(CPULIB)
 117         @echo "resolving symbols against unix.o"
 118         @echo $(UNIX_DIR)
 119         @echo $(OBJS_DIR)
 120         @(cd $(UNIX_DIR); pwd; \
 121             CPU_DIR=$(HERE) SYM_MOD=$(HERE)/$(SYM_MOD) $(MAKE) symcheck)
 122 
 123 $(ROOTSOFTLINKS): $(ROOTMODULE)
 124         $(RM) $@; $(SYMLINK) $(MODULE) $@
 125 
 126 #       Include common targets.
 127 #
 128 include $(UTSBASE)/sun4u/serengeti/Makefile.targ