1 #
   2 # This file and its contents are supplied under the terms of the
   3 # Common Development and Distribution License ("CDDL"), version 1.0.
   4 # You may only use this file in accordance with the terms of version
   5 # 1.0 of the CDDL.
   6 #
   7 # A full copy of the text of the CDDL should have accompanied this
   8 # source.  A copy of the CDDL is also available via the Internet at
   9 # http://www.illumos.org/license/CDDL.
  10 #
  11 
  12 #
  13 # Copyright 2018 Toomas Soome <tsoome@me.com>
  14 #
  15 # Copyright (c) 2018, Joyent, Inc.
  16 
  17 include         ../Makefile.tools
  18 
  19 SOFTCORE=       $(SRC)/common/ficl/softcore
  20 PROG=           makesoftcore
  21 
  22 CPPFLAGS +=     -I$(SRC)/lib/libficl -I$(SRC)/common/ficl
  23 OBJS=           makesoftcore.o lz4.o
  24 SRCS=           makesoftcore.c lz4.c
  25 LDLIBS=         -lumem
  26 
  27 # not linted
  28 SMOFF += all_func_returns
  29 
  30 .KEEP_STATE:
  31 
  32 all:            $(PROG)
  33 
  34 install:        all .WAIT $(ROOTONBLDMACHPROG)
  35 
  36 clean:
  37                 $(RM) $(PROG) $(OBJS)
  38 
  39 $(PROG):        $(OBJS)
  40                 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
  41                 $(POST_PROCESS)
  42 
  43 %.o:            $(SOFTCORE)/%.c
  44                 $(COMPILE.c) -o $@ $<
  45 
  46 include         ../Makefile.targ