diff options
-rw-r--r-- | sys/boot/ficl/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/boot/ficl/Makefile b/sys/boot/ficl/Makefile index c2b0bd4..9329528 100644 --- a/sys/boot/ficl/Makefile +++ b/sys/boot/ficl/Makefile @@ -1,11 +1,13 @@ # $FreeBSD$ # +.PATH: ${.CURDIR}/${MACHINE_ARCH} + LIB= ficl NOPROFILE= yes INTERNALLIB= yes INTERNALSTATICLIB= yes -BASE_SRCS= dict.c ficl.c math64.c stack.c vm.c words.c -SRCS= ${BASE_SRCS} ${MACHINE_ARCH}/sysdep.c softcore.c +BASE_SRCS= dict.c ficl.c math64.c stack.c sysdep.c vm.c words.c +SRCS= ${BASE_SRCS} softcore.c CLEANFILES= softcore.c testmain # Standard softwords |