From 18ae80eac7b678d71b13710b978a03863c7e3fd2 Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Sun, 18 Jul 2021 13:08:03 +0000 Subject: Install stdlib.pl and repl.pl into /sys/lib/prolog/ --- mkfile | 10 ++++++++++ module.c | 6 +++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/mkfile b/mkfile index 8e920c2..a3f5547 100644 --- a/mkfile +++ b/mkfile @@ -21,5 +21,15 @@ HFILES=dat.h fns.h BIN=/$objtype/bin +PROLOGFILES=\ + stdlib.pl\ + repl.pl + +default:V: all + +install: $PROLOGFILES + mkdir -p /sys/lib/prolog + cp $PROLOGFILES /sys/lib/prolog +