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
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.
13 # Copyright 2016 Toomas Soome <tsoome@me.com>
19 VERS=.$(MAJOR).$(MINOR)
21 OBJECTS= 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 \
26 include $(SRC)/lib/Makefile.lib
30 FICLDIR= $(SRC)/common/ficl
31 C99MODE= $(C99_ENABLE)
32 CPPFLAGS += -I.. -I$(FICLDIR) -D_LARGEFILE64_SOURCE=1
34 LDLIBS += -luuid -lc -lm -lumem
36 HEADERS= $(FICLDIR)/ficl.h $(FICLDIR)/ficltokens.h ../ficllocal.h \
37 $(FICLDIR)/ficlplatform/unix.h
39 pics/%.o: ../softcore/%.c $(HEADERS)
43 pics/%.o: $(FICLDIR)/%.c $(HEADERS)
47 pics/%.o: $(FICLDIR)/ficlplatform/%.c $(HEADERS)
51 pics/%.o: $(FICLDIR)/emu/%.c $(HEADERS)
55 pics/%.o: $(FICLDIR)/softcore/%.c $(HEADERS)
61 include $(SRC)/lib/Makefile.targ