1 ################################################################
2 # Install CHR stuff for the MS-Windows built
3 # Author: Jan Wielemaker
6 # nmake /f Makefile.mak
7 # nmake /f Makefile.mak install
8 ################################################################
11 !include $(PLHOME
)\src
\rules.mk
12 LIBDIR
=$(PLBASE
)\library
13 EXDIR
=$(PKGDOC
)\examples\chr
15 PL
="$(PLHOME)\bin\plcon.exe" -L200M
-G100M
-T40M
17 LIBPL
= chr_runtime.pl chr_op.pl chr_translate.pl chr_debug.pl \
18 chr_messages.pl hprolog.pl pairlist.pl clean_code.pl \
19 find.pl a_star.pl binomialheap.pl builtins.pl \
20 chr_hashtable_store.pl listmap.pl guard_entailment.pl \
21 chr_compiler_options.pl chr_compiler_utility.pl \
22 chr_compiler_errors.pl \
23 chr_integertable_store.pl
25 EXAMPLES
= chrfreeze.chr fib.chr gcd.chr primes.chr \
26 bool.chr family.chr fibonacci.chr leq.chr listdom.chr \
31 chr_translate_bootstrap1.pl
: chr_translate_bootstrap1.chr
32 $(PL
) -q
-f chr_swi_bootstrap.pl \
33 -g
"chr_compile_step1('chr_translate_bootstrap1.chr','chr_translate_bootstrap1.pl'),halt" \
35 $(PL
) -q
-f chr_swi_bootstrap.pl \
36 -g
"chr_compile_step2('chr_translate_bootstrap1.chr','chr_translate_bootstrap1.pl'),halt" \
39 chr_translate_bootstrap2.pl
: chr_translate_bootstrap2.chr chr_translate_bootstrap1.pl
40 $(PL
) -q
-f chr_swi_bootstrap.pl \
41 -g
"chr_compile_step2('chr_translate_bootstrap2.chr','chr_translate_bootstrap2.pl'),halt" \
43 $(PL
) -q
-f chr_swi_bootstrap.pl \
44 -g
"chr_compile_step3('chr_translate_bootstrap2.chr','chr_translate_bootstrap2.pl'),halt" \
47 guard_entailment.pl
: guard_entailment.chr chr_translate_bootstrap2.pl
48 $(PL
) -q
-f chr_swi_bootstrap.pl \
49 -g
"chr_compile_step3('guard_entailment.chr','guard_entailment.pl'),halt" \
52 chr_translate.pl
: chr_translate.chr chr_translate_bootstrap2.pl guard_entailment.pl
53 $(PL
) -q
-f chr_swi_bootstrap.pl \
54 -g
"chr_compile_step3('chr_translate.chr','chr_translate.pl'),halt" \
56 $(PL
) -p chr
=.
-q
-f chr_swi_bootstrap.pl \
57 -g
"chr_compile_step4('guard_entailment.chr','guard_entailment.pl'),halt" \
59 $(PL
) -p chr
=.
-q
-f chr_swi_bootstrap.pl \
60 -g
"chr_compile_step4('chr_translate.chr','chr_translate.pl'),halt" \
64 copy chr_swi.pl chr.pl
67 $(PL
) -q
-f chr_test.pl
-g
test,halt
-t
'halt(1)'
74 @if not exist
"$(CHR)\$(NULL)" $(MKDIR
) "$(CHR)"
75 @for
%f in
($(LIBPL
)) do \
77 copy
$(CHRPL
) "$(LIBDIR)\chr.pl"
78 copy README
"$(CHR)\README.TXT"
82 html-install
: install-examples
83 pdf-install
: install-examples
86 if not exist
"$(EXDIR)/$(NULL)" $(MKDIR
) "$(EXDIR)"
87 cd examples
& @for
%f in
($(EXAMPLES
)) do @copy
%f
"$(EXDIR)"
92 @for
%f in
($(LIBPL
)) do \
94 del
"$(CHR)\README.TXT"
95 del
"$(LIBDIR)\chr.pl"
100 -del chr.pl chr_translate.pl
101 -del chr_translate_bootstrap1.pl chr_translate_bootstrap2.pl
102 -del guard_entailment.pl