freebsd-dev/sys/boot/ficl/Makefile
Mike Smith 378972ac6b Transition from using Perl to using awk for our text-manipulation
needs.  This removes the dependancy on Perl for the generation of the
loader, allowing the world to be built on a perl-free system.

Submitted by:	Joe Abley <jabley@clear.co.nz>
1999-01-18 19:05:27 +00:00

31 lines
838 B
Makefile

# $Id: Makefile,v 1.6 1998/11/05 08:39:42 jkh Exp $
#
LIB= ficl
NOPROFILE= yes
INTERNALLIB= yes
INTERNALSTATICLIB= yes
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
SOFTWORDS= softcore.fr jhlocal.fr marker.fr
# Optional OO extension softwords
#SOFTWORDS+= oo.fr classes.fr
.PATH: ${.CURDIR}/softwords
CFLAGS+= -I${.CURDIR}
softcore.c: ${SOFTWORDS} softcore.awk
(cd ${.CURDIR}/softwords; cat ${SOFTWORDS} | awk -f softcore.awk) > ${.TARGET}
.include <bsd.lib.mk>
testmain: ${.CURDIR}/testmain.c ${SRCS}
@for i in ${BASE_SRCS}; do echo $${i}... ; \
${CC} -c ${CFLAGS} -DTESTMAIN ${.CURDIR}/$${i}; done
@echo softdep.c...
@${CC} -c ${CFLAGS} -D_TESTMAIN softcore.c
cc -o ${.TARGET} ${.CURDIR}/testmain.c ${OBJS}