Changeset View
Changeset View
Standalone View
Standalone View
sys/boot/ficl/Makefile
| # $FreeBSD$ | # $FreeBSD$ | ||||
| # | # | ||||
| FICLDIR?= ${.CURDIR} | FICLDIR?= ${.CURDIR} | ||||
| .if defined(FICL32) | .if defined(FICL32) | ||||
| .PATH: ${FICLDIR}/${MACHINE_CPUARCH:S/amd64/i386/} | .PATH: ${FICLDIR}/${MACHINE_CPUARCH:S/amd64/i386/} | ||||
| .elif ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el" | .elif ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el" | ||||
| .PATH: ${FICLDIR}/mips64 | .PATH: ${FICLDIR}/mips64 | ||||
| .elif ${MACHINE_ARCH} == "mips32" || ${MACHINE_ARCH} == "mips32el" | |||||
| .PATH: ${FICLDIR}/mips | |||||
| .else | .else | ||||
| .PATH: ${FICLDIR}/${MACHINE_CPUARCH} | .PATH: ${FICLDIR}/${MACHINE_CPUARCH} | ||||
| .endif | .endif | ||||
| BASE_SRCS= dict.c ficl.c fileaccess.c float.c loader.c math64.c \ | 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 | prefix.c search.c stack.c tools.c vm.c words.c | ||||
| SRCS= ${BASE_SRCS} sysdep.c softcore.c | SRCS= ${BASE_SRCS} sysdep.c softcore.c | ||||
| CLEANFILES= softcore.c testmain testmain.o | CLEANFILES= softcore.c testmain testmain.o | ||||
| ▲ Show 20 Lines • Show All 63 Lines • Show Last 20 Lines | |||||