Print this page
12312 fix unused lib dependencies
   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 2016 Toomas Soome <tsoome@me.com>
  14 #
  15 # Copyright (c) 2018, Joyent, Inc.
  16 
  17 LIBRARY=libficl-sys.a
  18 MAJOR = 4
  19 MINOR = 1.0
  20 VERS=.$(MAJOR).$(MINOR)
  21 
  22 OBJECTS= dictionary.o system.o fileaccess.o float.o double.o prefix.o search.o \
  23         softcore.o stack.o tools.o vm.o primitives.o unix.o utility.o \
  24         hash.o callback.o word.o loader.o pager.o extras.o \
  25         loader_emu.o gfx_fb.o pnglite.o lz4.o
  26 
  27 include $(SRC)/lib/Makefile.lib
  28 
  29 LIBS=   $(DYNLIB)
  30 FICLDIR=        $(SRC)/common/ficl
  31 LZ4=            $(SRC)/common/lz4
  32 CSTD=   $(CSTD_GNU99)
  33 PNGLITE=        $(SRC)/common/pnglite
  34 CPPFLAGS +=     -I.. -I$(FICLDIR) -I$(FICLDIR)/emu -D_LARGEFILE64_SOURCE=1
  35 CPPFLAGS +=     -I$(PNGLITE) -I$(LZ4)
  36 CFLAGS += $(C_BIGPICFLAGS)
  37 CFLAGS64 += $(C_BIGPICFLAGS64)
  38 
  39 # As variable "count" is marked volatile, gcc 4.4.4 will complain about
  40 # function argument. So we switch this warning off
  41 # for time being, till gcc 4.4.4 will be replaced.
  42 pics/vm.o := CERRWARN += -_gcc=-Wno-clobbered
  43 
  44 LDLIBS +=       -luuid -lz -lc -lm -lumem
  45 NATIVE_LIBS +=  libz.so
  46 
  47 HEADERS= $(FICLDIR)/ficl.h $(FICLDIR)/ficltokens.h ../ficllocal.h \
  48         $(FICLDIR)/ficlplatform/unix.h $(PNGLITE)/pnglite.h
  49 
  50 pics/%.o:       ../softcore/%.c $(HEADERS)
  51         $(COMPILE.c) -o $@ $<
  52         $(POST_PROCESS_O)
  53 
  54 pics/%.o:       $(FICLDIR)/%.c $(HEADERS)
  55         $(COMPILE.c) -o $@ $<
  56         $(POST_PROCESS_O)
  57 
  58 pics/%.o:       $(FICLDIR)/ficlplatform/%.c $(HEADERS)
  59         $(COMPILE.c) -o $@ $<
  60         $(POST_PROCESS_O)
  61 
  62 pics/%.o:       $(FICLDIR)/emu/%.c $(HEADERS)
  63         $(COMPILE.c) -o $@ $<
  64         $(POST_PROCESS_O)
   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 2016 Toomas Soome <tsoome@me.com>
  14 #
  15 # Copyright 2020 Joyent, Inc.
  16 
  17 LIBRARY=libficl-sys.a
  18 MAJOR = 4
  19 MINOR = 1.0
  20 VERS=.$(MAJOR).$(MINOR)
  21 
  22 OBJECTS= dictionary.o system.o fileaccess.o float.o double.o prefix.o search.o \
  23         softcore.o stack.o tools.o vm.o primitives.o unix.o utility.o \
  24         hash.o callback.o word.o loader.o pager.o extras.o \
  25         loader_emu.o gfx_fb.o pnglite.o lz4.o
  26 
  27 include $(SRC)/lib/Makefile.lib
  28 
  29 LIBS=   $(DYNLIB)
  30 FICLDIR=        $(SRC)/common/ficl
  31 LZ4=            $(SRC)/common/lz4
  32 CSTD=   $(CSTD_GNU99)
  33 PNGLITE=        $(SRC)/common/pnglite
  34 CPPFLAGS +=     -I.. -I$(FICLDIR) -I$(FICLDIR)/emu -D_LARGEFILE64_SOURCE=1
  35 CPPFLAGS +=     -I$(PNGLITE) -I$(LZ4)
  36 CFLAGS += $(C_BIGPICFLAGS)
  37 CFLAGS64 += $(C_BIGPICFLAGS64)
  38 
  39 # As variable "count" is marked volatile, gcc 4.4.4 will complain about
  40 # function argument. So we switch this warning off
  41 # for time being, till gcc 4.4.4 will be replaced.
  42 pics/vm.o := CERRWARN += -_gcc=-Wno-clobbered
  43 
  44 LDLIBS +=       -lumem -luuid -lz -lc -lm
  45 NATIVE_LIBS +=  libz.so
  46 
  47 HEADERS= $(FICLDIR)/ficl.h $(FICLDIR)/ficltokens.h ../ficllocal.h \
  48         $(FICLDIR)/ficlplatform/unix.h $(PNGLITE)/pnglite.h
  49 
  50 pics/%.o:       ../softcore/%.c $(HEADERS)
  51         $(COMPILE.c) -o $@ $<
  52         $(POST_PROCESS_O)
  53 
  54 pics/%.o:       $(FICLDIR)/%.c $(HEADERS)
  55         $(COMPILE.c) -o $@ $<
  56         $(POST_PROCESS_O)
  57 
  58 pics/%.o:       $(FICLDIR)/ficlplatform/%.c $(HEADERS)
  59         $(COMPILE.c) -o $@ $<
  60         $(POST_PROCESS_O)
  61 
  62 pics/%.o:       $(FICLDIR)/emu/%.c $(HEADERS)
  63         $(COMPILE.c) -o $@ $<
  64         $(POST_PROCESS_O)