socsvn commit: r287929 - soc2015/clord/head/sys/boot/ficl

clord at FreeBSD.org clord at FreeBSD.org
Fri Jul 3 21:42:01 UTC 2015


Author: clord
Date: Fri Jul  3 21:42:00 2015
New Revision: 287929
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=287929

Log:
  Begin Makefile modifications for building Ficl 4

Modified:
  soc2015/clord/head/sys/boot/ficl/Makefile

Modified: soc2015/clord/head/sys/boot/ficl/Makefile
==============================================================================
--- soc2015/clord/head/sys/boot/ficl/Makefile	Fri Jul  3 20:43:31 2015	(r287928)
+++ soc2015/clord/head/sys/boot/ficl/Makefile	Fri Jul  3 21:42:00 2015	(r287929)
@@ -10,11 +10,12 @@
 .else
 .PATH: ${FICLDIR}/${MACHINE_CPUARCH}
 .endif
-BASE_SRCS=	dict.c ficl.c fileaccess.c float.c loader.c math64.c \
-		prefix.c search.c stack.c tools.c vm.c words.c
+BASE_SRCS=	dictionary.c system.c fileaccess.c float.c double.c prefix.c \
+		search.c stack.c tools.c vm.c primitives.c bit.c \
+		lzuncompress.c utility.c hash.c callback.c word.c extras.c loader.c
 
 SRCS=		${BASE_SRCS} sysdep.c softcore.c
-CLEANFILES=	softcore.c testmain testmain.o
+CLEANFILES=	softcore.c main main.o
 CFLAGS+=	-ffreestanding
 .if ${MACHINE_CPUARCH} == "i386" || \
     (${MACHINE_CPUARCH} == "amd64" && defined(FICL32))
@@ -41,7 +42,7 @@
 .endif
 .ifmake testmain
 CFLAGS+=	-DTESTMAIN -D_TESTMAIN
-SRCS+=		testmain.c
+SRCS+=		main.c
 PROG=		testmain
 .include <bsd.prog.mk>
 .else
@@ -51,7 +52,7 @@
 .endif
 
 # Standard softwords
-.PATH: ${FICLDIR}/softwords
+.PATH: ${FICLDIR}/softcore
 SOFTWORDS=	softcore.fr jhlocal.fr marker.fr freebsd.fr ficllocal.fr \
 		ifbrack.fr
 # Optional OO extension softwords


More information about the svn-soc-all mailing list