1998-11-04 03:42:16 +00:00
|
|
|
# $Id: Makefile,v 1.2 1998/11/04 00:29:33 msmith Exp $
|
1998-11-03 06:11:35 +00:00
|
|
|
#
|
|
|
|
LIB= ficl
|
|
|
|
NOPROFILE= yes
|
|
|
|
INTERNALLIB= yes
|
|
|
|
INTERNALSTATICLIB= yes
|
1998-11-04 00:29:33 +00:00
|
|
|
SRCS= dict.c ficl.c math64.c softcore.c stack.c sysdep.c \
|
|
|
|
vm.c words.c
|
1998-11-04 03:42:16 +00:00
|
|
|
CLEANFILES= softcore.c testmain
|
1998-11-03 06:11:35 +00:00
|
|
|
|
|
|
|
# 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.pl
|
|
|
|
(cd ${.CURDIR}/softwords; ./softcore.pl ${SOFTWORDS}) > ${.TARGET}
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
|
1998-11-04 03:42:16 +00:00
|
|
|
|
|
|
|
testmain: testmain.c ${SRCS}
|
|
|
|
cc -o testmain -DTESTMAIN testmain.c ${SRCS}
|