Print this page
7627 Build should be smarter about how SGSPROTO is created
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Kim Shrier <kshrier@racktopsystems.com>


  18 #
  19 # CDDL HEADER END
  20 #
  21 
  22 #
  23 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  24 # Use is subject to license terms.
  25 #
  26 # Copyright 2016 RackTop Systems.
  27 #
  28 
  29 all:            $(PROG)
  30 
  31 package \
  32 install:        all $(VAR_SGSBINPROG) $(VAR_SGSCCSLINK)
  33 
  34 %.o:            ../common/%.c
  35                 $(COMPILE.c) $<
  36                 $(POST_PROCESS_O)
  37 
  38 $(PROG):        $(MAPFILES)


  39 
  40 clean:
  41                 $(RM) $(OBJS) $(CLEANFILES)
  42 
  43 delete:
  44                 $(RM) $(PROG)
  45 
  46 lint:           $(LINTOUT32) $(SGSLINTOUT)
  47 
  48 include         $(SRC)/cmd/Makefile.targ
  49 include         $(SRC)/cmd/sgs/Makefile.targ
  50 
  51 # Special target for native builds (ie. when we need to build a version of ld
  52 # to build a version of ld :-).
  53 
  54 native:         $(SGSBINDIR)/$(PROG)
  55 
  56 $(SGSBINDIR)/$(PROG) \
  57 $(PROG):        $$(OBJS)
  58                 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
  59                 $(POST_PROCESS)
  60 
  61 # Derived source and header files (messaging).
  62 
  63 catalog:        $(BLTMESG)
  64 
  65 chkmsg:         $(SRCS)
  66                 sh $(CHKMSG) $(CHKMSGFLAGS) $(SRCS)
  67 
  68 $(BLTDEFS) + \
  69 $(BLTDATA) + \
  70 $(BLTMESG):     $(SGSMSGALL)
  71                 $(SGSMSG) $(SGSMSGFLAGS) $(SGSMSGALL)
  72 


  18 #
  19 # CDDL HEADER END
  20 #
  21 
  22 #
  23 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  24 # Use is subject to license terms.
  25 #
  26 # Copyright 2016 RackTop Systems.
  27 #
  28 
  29 all:            $(PROG)
  30 
  31 package \
  32 install:        all $(VAR_SGSBINPROG) $(VAR_SGSCCSLINK)
  33 
  34 %.o:            ../common/%.c
  35                 $(COMPILE.c) $<
  36                 $(POST_PROCESS_O)
  37 
  38 $(PROG):        $(OBJS) $(MAPFILES)
  39                 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
  40                 $(POST_PROCESS)
  41 
  42 clean:
  43                 $(RM) $(OBJS) $(CLEANFILES)
  44 
  45 delete:
  46                 $(RM) $(PROG)
  47 
  48 lint:           $(LINTOUT32) $(SGSLINTOUT)
  49 
  50 include         $(SRC)/cmd/Makefile.targ
  51 include         $(SRC)/cmd/sgs/Makefile.targ
  52 
  53 # Special target for native builds (ie. when we need to build a version of ld
  54 # to build a version of ld :-).
  55 
  56 native:         $(SGSBINDIR)/$(PROG)
  57 
  58 $(SGSBINDIR)/$(PROG):   $(OBJS) $(SGSBINDIR)

  59                 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
  60                 $(POST_PROCESS)
  61 
  62 # Derived source and header files (messaging).
  63 
  64 catalog:        $(BLTMESG)
  65 
  66 chkmsg:         $(SRCS)
  67                 sh $(CHKMSG) $(CHKMSGFLAGS) $(SRCS)
  68 
  69 $(BLTDEFS) + \
  70 $(BLTDATA) + \
  71 $(BLTMESG):     $(SGSMSGALL)
  72                 $(SGSMSG) $(SGSMSGFLAGS) $(SGSMSGALL)
  73