xref: /illumos-gate/usr/src/lib/libficl/Makefile.com (revision e153cda9f9660e385e8f468253f80e59f5d454d7)
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
16LIBRARY=libficl-sys.a
17MAJOR = 4
18MINOR = 1.0
19VERS=.$(MAJOR).$(MINOR)
20
21OBJECTS= dictionary.o system.o fileaccess.o float.o double.o prefix.o search.o \
22	softcore.o stack.o tools.o vm.o primitives.o unix.o utility.o \
23	hash.o callback.o word.o loader.o pager.o extras.o \
24	loader_emu.o lz4.o
25
26include $(SRC)/lib/Makefile.lib
27
28LIBS=	$(DYNLIB) $(LINTLIB)
29
30FICLDIR=	$(SRC)/common/ficl
31CSTD=	$(CSTD_GNU99)
32CPPFLAGS +=	-I.. -I$(FICLDIR) -D_LARGEFILE64_SOURCE=1
33
34# As variable "count" is marked volatile, gcc 4.4.4 will complain about
35# function argument. So we switch this warning off
36# for time being, till gcc 4.4.4 will be replaced.
37pics/vm.o := CERRWARN += -_gcc=-Wno-clobbered
38
39LDLIBS +=	-luuid -lc -lm -lumem
40
41HEADERS= $(FICLDIR)/ficl.h $(FICLDIR)/ficltokens.h ../ficllocal.h \
42	$(FICLDIR)/ficlplatform/unix.h
43
44pics/%.o:	../softcore/%.c $(HEADERS)
45	$(COMPILE.c) -o $@ $<
46	$(POST_PROCESS_O)
47
48pics/%.o:	$(FICLDIR)/%.c $(HEADERS)
49	$(COMPILE.c) -o $@ $<
50	$(POST_PROCESS_O)
51
52pics/%.o:	$(FICLDIR)/ficlplatform/%.c $(HEADERS)
53	$(COMPILE.c) -o $@ $<
54	$(POST_PROCESS_O)
55
56pics/%.o:	$(FICLDIR)/emu/%.c $(HEADERS)
57	$(COMPILE.c) -o $@ $<
58	$(POST_PROCESS_O)
59
60pics/%.o:	$(FICLDIR)/softcore/%.c $(HEADERS)
61	$(COMPILE.c) -o $@ $<
62	$(POST_PROCESS_O)
63
64$(LINTLIB) := SRCS=	../$(LINTSRC)
65
66all: $(LIBS)
67
68include $(SRC)/lib/Makefile.targ
69