diff options
author | dcs <dcs@FreeBSD.org> | 2000-06-07 22:07:01 +0000 |
---|---|---|
committer | dcs <dcs@FreeBSD.org> | 2000-06-07 22:07:01 +0000 |
commit | 281e1110df75b8ae507b901d7ec2bb7e2d6d15cf (patch) | |
tree | e663f483eb39d606df461530064272ec59bb467c /sys/boot/ficl/Makefile | |
parent | f52e5ae84b417cfe1e980bae37deb342ff1d32a5 (diff) | |
download | FreeBSD-src-281e1110df75b8ae507b901d7ec2bb7e2d6d15cf.zip FreeBSD-src-281e1110df75b8ae507b901d7ec2bb7e2d6d15cf.tar.gz |
Add setenv, getenv, setenv?, unsetenv, copyin and copyout to FICL.
Diffstat (limited to 'sys/boot/ficl/Makefile')
-rw-r--r-- | sys/boot/ficl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/boot/ficl/Makefile b/sys/boot/ficl/Makefile index f28b41c..88e3299 100644 --- a/sys/boot/ficl/Makefile +++ b/sys/boot/ficl/Makefile @@ -17,6 +17,7 @@ LIB= ficl INTERNALLIB= yes INTERNALSTATICLIB= yes NOPROFILE= yes +SRCS+= loader.c .include <bsd.lib.mk> .endif @@ -27,7 +28,7 @@ SOFTWORDS= softcore.fr jhlocal.fr marker.fr freebsd.fr ficllocal.fr \ #SOFTWORDS+= oo.fr classes.fr .PATH: ${.CURDIR}/softwords -CFLAGS+= -I${.CURDIR} -I${.CURDIR}/${MACHINE_ARCH} -DFICL_TRACE +CFLAGS+= -I${.CURDIR} -I${.CURDIR}/${MACHINE_ARCH} -I${.CURDIR}/../common -DFICL_TRACE softcore.c: ${SOFTWORDS} softcore.awk (cd ${.CURDIR}/softwords; cat ${SOFTWORDS} | awk -f softcore.awk) > ${.TARGET} |