aboutsummaryrefslogtreecommitdiff
path: root/sys/boot/ficl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sys/boot/ficl/Makefile')
-rw-r--r--sys/boot/ficl/Makefile30
1 files changed, 0 insertions, 30 deletions
diff --git a/sys/boot/ficl/Makefile b/sys/boot/ficl/Makefile
deleted file mode 100644
index 260254e316a1..000000000000
--- a/sys/boot/ficl/Makefile
+++ /dev/null
@@ -1,30 +0,0 @@
-# $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}
-