875e602afe
script is not executable. Submitted by: Don Lewis <Don.Lewis@tsc.tdk.com>
27 lines
627 B
Makefile
27 lines
627 B
Makefile
# $Id: Makefile,v 1.3 1998/11/04 03:42:16 msmith Exp $
|
|
#
|
|
LIB= ficl
|
|
NOPROFILE= yes
|
|
INTERNALLIB= yes
|
|
INTERNALSTATICLIB= yes
|
|
SRCS= dict.c ficl.c math64.c softcore.c stack.c sysdep.c \
|
|
vm.c words.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.pl
|
|
(cd ${.CURDIR}/softwords; perl softcore.pl ${SOFTWORDS}) > ${.TARGET}
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
|
|
testmain: testmain.c ${SRCS}
|
|
cc -o testmain -DTESTMAIN testmain.c ${SRCS}
|