Deleted Added
sdiff udiff text old ( 116000 ) new ( 116864 )
full compact
1# $FreeBSD: head/sys/boot/ficl/Makefile 116000 2003-06-08 03:11:16Z nyan $
2#
3.PATH: ${.CURDIR}/${MACHINE_ARCH}
4BASE_SRCS= dict.c ficl.c fileaccess.c float.c loader.c math64.c \
5 prefix.c search.c stack.c tools.c vm.c words.c
6
7SRCS= ${BASE_SRCS} sysdep.c softcore.c
8CLEANFILES= softcore.c testmain testmain.o
9CFLAGS+= -ffreestanding
10.if ${MACHINE_ARCH} == "alpha"

--- 21 unchanged lines hidden (view full) ---

32
33# Standard softwords
34.PATH: ${.CURDIR}/softwords
35SOFTWORDS= softcore.fr jhlocal.fr marker.fr freebsd.fr ficllocal.fr \
36 ifbrack.fr
37# Optional OO extension softwords
38#SOFTWORDS+= oo.fr classes.fr
39
40CFLAGS+= -I${.CURDIR} -I${.CURDIR}/${MACHINE_ARCH} -I${.CURDIR}/../common
41
42softcore.c: ${SOFTWORDS} softcore.awk
43 (cd ${.CURDIR}/softwords; cat ${SOFTWORDS} \
44 | awk -f softcore.awk -v datestamp="`LC_ALL=C date`") > ${.TARGET}