xref: /illumos-gate/usr/src/lib/libficl/Makefile.com (revision 311330e6823a3a919ff127757c2f0cf9eb17aa0e)
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
17LIBRARY=libficl-sys.a
18MAJOR = 4
19MINOR = 1.0
20VERS=.$(MAJOR).$(MINOR)
21
22OBJECTS= 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
27include $(SRC)/lib/Makefile.lib
28
29LIBS=	$(DYNLIB)
30FICLDIR=	$(SRC)/common/ficl
31LZ4=		$(SRC)/common/lz4
32CSTD=	$(CSTD_GNU99)
33PNGLITE=	$(SRC)/common/pnglite
34CPPFLAGS +=	-I.. -I$(FICLDIR) -I$(FICLDIR)/emu -D_LARGEFILE64_SOURCE=1
35CPPFLAGS +=	-I$(PNGLITE) -I$(LZ4)
36CFLAGS += $(C_BIGPICFLAGS)
37CFLAGS64 += $(C_BIGPICFLAGS64)
38
39LDLIBS +=	-lumem -luuid -lz -lc -lm
40NATIVE_LIBS +=	libz.so
41
42HEADERS= $(FICLDIR)/ficl.h $(FICLDIR)/ficltokens.h ../ficllocal.h \
43	$(FICLDIR)/ficlplatform/unix.h $(PNGLITE)/pnglite.h
44
45pics/%.o:	../softcore/%.c $(HEADERS)
46	$(COMPILE.c) -o $@ $<
47	$(POST_PROCESS_O)
48
49pics/%.o:	$(FICLDIR)/%.c $(HEADERS)
50	$(COMPILE.c) -o $@ $<
51	$(POST_PROCESS_O)
52
53pics/%.o:	$(FICLDIR)/ficlplatform/%.c $(HEADERS)
54	$(COMPILE.c) -o $@ $<
55	$(POST_PROCESS_O)
56
57pics/%.o:	$(FICLDIR)/emu/%.c $(HEADERS)
58	$(COMPILE.c) -o $@ $<
59	$(POST_PROCESS_O)
60
61pics/%.o:	$(LZ4)/%.c $(HEADERS)
62	$(COMPILE.c) -o $@ $<
63	$(POST_PROCESS_O)
64
65pics/%.o:	$(PNGLITE)/%.c $(HEADERS)
66	$(COMPILE.c) -o $@ $<
67	$(POST_PROCESS_O)
68
69all: $(LIBS)
70
71include $(SRC)/lib/Makefile.targ
72