1996-02-21 02:49:46 -08:00
|
|
|
# The main Makefile
|
|
|
|
|
|
|
|
!include config\Makefile.nt
|
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
CAMLC=boot\ocamlrun boot\ocamlc -I boot
|
|
|
|
CAMLOPT=boot\ocamlrun .\ocamlopt -I stdlib
|
1996-02-21 02:49:46 -08:00
|
|
|
COMPFLAGS=$(INCLUDES)
|
|
|
|
LINKFLAGS=
|
1996-04-30 07:53:58 -07:00
|
|
|
CAMLYACC=boot\ocamlyacc
|
1996-02-21 02:49:46 -08:00
|
|
|
YACCFLAGS=
|
1996-04-30 07:53:58 -07:00
|
|
|
CAMLLEX=boot\ocamlrun boot\ocamllex
|
|
|
|
CAMLDEP=boot\ocamlrun tools\ocamldep
|
1996-02-21 02:49:46 -08:00
|
|
|
DEPFLAGS=$(INCLUDES)
|
1996-04-30 07:53:58 -07:00
|
|
|
CAMLRUN=byterun\ocamlrun
|
1996-02-21 02:49:46 -08:00
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
|
1996-02-21 02:49:46 -08:00
|
|
|
INCLUDES=-I utils -I parsing -I typing -I bytecomp -I asmcomp -I driver -I toplevel
|
|
|
|
|
|
|
|
UTILS=utils\misc.cmo utils\tbl.cmo utils\config.cmo \
|
|
|
|
utils\clflags.cmo utils\terminfo.cmo
|
|
|
|
|
1996-04-22 04:15:41 -07:00
|
|
|
PARSING=parsing\label.cmo parsing\location.cmo parsing\longident.cmo \
|
1996-02-21 02:49:46 -08:00
|
|
|
parsing\pstream.cmo parsing\parser.cmo parsing\lexer.cmo parsing\parse.cmo
|
|
|
|
|
|
|
|
TYPING=typing\ident.cmo typing\path.cmo \
|
|
|
|
typing\primitive.cmo typing\typedtree.cmo \
|
1996-04-22 04:15:41 -07:00
|
|
|
typing\subst.cmo typing\predef.cmo \
|
|
|
|
typing\datarepr.cmo typing\env.cmo \
|
|
|
|
typing\ctype.cmo typing\printtyp.cmo \
|
|
|
|
typing\mtype.cmo typing\includecore.cmo \
|
|
|
|
typing\includemod.cmo typing\parmatch.cmo \
|
1996-02-21 02:49:46 -08:00
|
|
|
typing\typetexp.cmo typing\typecore.cmo \
|
1996-04-22 04:15:41 -07:00
|
|
|
typing\typedecl.cmo typing\typeclass.cmo \
|
|
|
|
typing\typemod.cmo
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
COMP=bytecomp\lambda.cmo bytecomp\printlambda.cmo \
|
1996-04-22 04:15:41 -07:00
|
|
|
bytecomp\translobj.cmo bytecomp\matching.cmo bytecomp\translcore.cmo \
|
|
|
|
bytecomp\translclass.cmo bytecomp\translmod.cmo \
|
1996-02-21 02:49:46 -08:00
|
|
|
bytecomp\simplif.cmo bytecomp\runtimedef.cmo
|
|
|
|
|
|
|
|
BYTECOMP=bytecomp\meta.cmo bytecomp\instruct.cmo bytecomp\bytegen.cmo \
|
|
|
|
bytecomp\printinstr.cmo bytecomp\opcodes.cmo bytecomp\emitcode.cmo \
|
|
|
|
bytecomp\symtable.cmo bytecomp\bytelibrarian.cmo bytecomp\bytelink.cmo
|
|
|
|
|
|
|
|
ASMCOMP=asmcomp\arch.cmo asmcomp\cmm.cmo asmcomp\printcmm.cmo \
|
|
|
|
asmcomp\reg.cmo asmcomp\mach.cmo asmcomp\proc.cmo \
|
|
|
|
asmcomp\clambda.cmo asmcomp\compilenv.cmo \
|
|
|
|
asmcomp\closure.cmo asmcomp\cmmgen.cmo \
|
|
|
|
asmcomp\printmach.cmo asmcomp\selection.cmo asmcomp\liveness.cmo \
|
|
|
|
asmcomp\spill.cmo asmcomp\split.cmo \
|
|
|
|
asmcomp\interf.cmo asmcomp\coloring.cmo asmcomp\reload.cmo \
|
|
|
|
asmcomp\printlinear.cmo asmcomp\linearize.cmo asmcomp\scheduling.cmo \
|
|
|
|
asmcomp\emitaux.cmo asmcomp\emit.cmo asmcomp\asmgen.cmo \
|
|
|
|
asmcomp\asmlink.cmo asmcomp\asmlibrarian.cmo
|
|
|
|
|
|
|
|
DRIVER=driver\errors.cmo driver\compile.cmo driver\main.cmo
|
|
|
|
|
|
|
|
OPTDRIVER=driver\opterrors.cmo driver\optcompile.cmo driver\optmain.cmo
|
|
|
|
|
|
|
|
TOPLEVEL=driver\errors.cmo driver\compile.cmo \
|
|
|
|
toplevel\printval.cmo toplevel\toploop.cmo \
|
|
|
|
toplevel\trace.cmo toplevel\topdirs.cmo
|
|
|
|
|
|
|
|
TOPLEVELMAIN=toplevel\topmain.cmo
|
|
|
|
|
|
|
|
COMPOBJS=$(UTILS) $(PARSING) $(TYPING) $(COMP) $(BYTECOMP) $(DRIVER)
|
|
|
|
|
|
|
|
TOPLIB=$(UTILS) $(PARSING) $(TYPING) $(COMP) $(BYTECOMP) $(TOPLEVEL)
|
|
|
|
|
|
|
|
TOPOBJS=$(TOPLIB) $(TOPLEVELMAIN)
|
|
|
|
|
|
|
|
OPTOBJS=$(UTILS) $(PARSING) $(TYPING) $(COMP) $(ASMCOMP) $(OPTDRIVER)
|
|
|
|
|
|
|
|
EXPUNGEOBJS=utils\misc.cmo utils\tbl.cmo \
|
|
|
|
utils\config.cmo utils\clflags.cmo \
|
|
|
|
typing\ident.cmo typing\predef.cmo \
|
|
|
|
bytecomp\runtimedef.cmo bytecomp\symtable.cmo \
|
|
|
|
toplevel\expunge.cmo
|
|
|
|
|
|
|
|
PERVASIVES=arg array char digest filename format gc hashtbl lexing list map \
|
|
|
|
obj parsing pervasives printexc printf queue random set sort \
|
1996-05-03 02:52:50 -07:00
|
|
|
stack string stream sys oo genlex
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
# Recompile the system using the bootstrap compiler
|
1996-04-30 07:53:58 -07:00
|
|
|
all: runtime ocamlc ocamllex ocamlyacc ocamltools library ocaml otherlibraries
|
1996-02-21 02:49:46 -08:00
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
# The compilation of ocaml will fail if the runtime has changed.
|
1996-02-21 02:49:46 -08:00
|
|
|
# Never mind, just do make bootstrap to reach fixpoint again.
|
|
|
|
|
|
|
|
# Compile everything the first time
|
|
|
|
world: coldstart clean all
|
|
|
|
|
|
|
|
# Set up the configuration files
|
|
|
|
configure:
|
|
|
|
cp config\m-nt.h config\m.h
|
|
|
|
cp config\s-nt.h config\s.h
|
1996-02-22 04:51:04 -08:00
|
|
|
cp config\Makefile.nt config\Makefile
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
# Complete bootstrapping cycle
|
|
|
|
bootstrap:
|
|
|
|
# Save the original bootstrap compiler
|
|
|
|
$(MAKEREC) backup
|
|
|
|
# Promote the new compiler but keep the old runtime
|
1996-04-30 07:53:58 -07:00
|
|
|
# This compiler runs on boot\ocamlrun and produces bytecode for byterun\ocamlrun
|
1996-02-21 02:49:46 -08:00
|
|
|
$(MAKEREC) promote-cross
|
1996-04-30 07:53:58 -07:00
|
|
|
# Rebuild ocamlc and ocamllex (run on byterun\ocamlrun)
|
1996-02-21 02:49:46 -08:00
|
|
|
$(MAKEREC) clean
|
1996-04-30 07:53:58 -07:00
|
|
|
$(MAKEREC) ocamlc ocamllex
|
|
|
|
# Rebuild the library (using byterun\ocamlrun .\ocamlc)
|
1996-02-21 02:49:46 -08:00
|
|
|
$(MAKEREC) library-cross
|
|
|
|
# Promote the new compiler and the new runtime
|
|
|
|
$(MAKEREC) promote
|
1996-04-30 07:53:58 -07:00
|
|
|
# Rebuild everything, including ocaml and the tools
|
1996-02-21 02:49:46 -08:00
|
|
|
$(MAKEREC) clean
|
|
|
|
$(MAKEREC) all
|
|
|
|
# Check if fixpoint reached
|
|
|
|
$(MAKEREC) compare
|
|
|
|
|
1996-05-07 06:08:11 -07:00
|
|
|
LIBFILES=stdlib.cma std_exit.cmo *.cmi camlheader
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
# Start up the system from the distribution compiler
|
|
|
|
coldstart:
|
|
|
|
cd byterun & $(MAKEREC) all
|
1996-04-30 07:53:58 -07:00
|
|
|
cp byterun\ocamlrun.exe boot\ocamlrun.exe
|
1996-02-21 02:49:46 -08:00
|
|
|
cd yacc & $(MAKEREC) all
|
1996-04-30 07:53:58 -07:00
|
|
|
cp yacc\ocamlyacc.exe boot\ocamlyacc.exe
|
|
|
|
cd stdlib & $(MAKEREC) COMPILER=..\boot\ocamlc all
|
1996-02-21 02:49:46 -08:00
|
|
|
cd stdlib & cp $(LIBFILES) ..\boot
|
|
|
|
|
|
|
|
# Save the current bootstrap compiler
|
|
|
|
backup:
|
|
|
|
if not exist boot\Saved mkdir boot\Saved
|
|
|
|
mv boot\Saved boot\Saved.prev
|
|
|
|
mkdir boot\Saved
|
|
|
|
mv boot\Saved.prev boot\Saved\Saved.prev
|
1996-04-30 07:53:58 -07:00
|
|
|
cp boot\ocamlrun.exe boot\Saved\ocamlrun.exe
|
|
|
|
cd boot & mv ocamlc ocamllex ocamlyacc.exe Saved
|
1996-02-21 02:49:46 -08:00
|
|
|
cd boot & cp $(LIBFILES) Saved
|
|
|
|
|
|
|
|
# Promote the newly compiled system to the rank of cross compiler
|
|
|
|
# (Runs on the old runtime, produces code for the new runtime)
|
|
|
|
promote-cross:
|
1996-04-30 07:53:58 -07:00
|
|
|
cp ocamlc boot\ocamlc
|
|
|
|
cp lex\ocamllex boot\ocamllex
|
|
|
|
cp yacc\ocamlyacc.exe boot\ocamlyacc.exe
|
1996-02-21 02:49:46 -08:00
|
|
|
cd stdlib & cp $(LIBFILES) ..\boot
|
|
|
|
|
|
|
|
# Promote the newly compiled system to the rank of bootstrap compiler
|
|
|
|
# (Runs on the new runtime, produces code for the new runtime)
|
|
|
|
promote: promote-cross
|
1996-04-30 07:53:58 -07:00
|
|
|
cp byterun\ocamlrun.exe boot\ocamlrun.exe
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
# Restore the saved bootstrap compiler if a problem arises
|
|
|
|
restore:
|
1996-02-26 05:52:15 -08:00
|
|
|
cd boot\Saved & mv * ..
|
1996-02-21 02:49:46 -08:00
|
|
|
rmdir boot\Saved
|
|
|
|
mv boot\Saved.prev boot\Saved
|
|
|
|
|
|
|
|
# Check if fixpoint reached
|
|
|
|
compare:
|
1996-04-30 07:53:58 -07:00
|
|
|
fc /b boot\ocamlc ocamlc
|
|
|
|
fc /b boot\ocamllex lex\ocamllex
|
1996-02-21 02:49:46 -08:00
|
|
|
echo "Fixpoint reached, bootstrap succeeded."
|
|
|
|
|
|
|
|
# Remove old bootstrap compilers
|
|
|
|
cleanboot:
|
|
|
|
rm -rf boot\Saved\Saved.prev\*
|
|
|
|
|
|
|
|
# Compile the native-code compiler
|
1996-04-30 07:53:58 -07:00
|
|
|
opt: runtimeopt ocamlopt libraryopt otherlibrariesopt
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
# Installation
|
1996-02-22 04:51:04 -08:00
|
|
|
install: installbyt installopt
|
|
|
|
|
|
|
|
installbyt:
|
1996-02-21 02:49:46 -08:00
|
|
|
cd byterun & $(MAKEREC) install
|
1996-04-30 07:53:58 -07:00
|
|
|
cp ocamlc $(BINDIR)\ocamlc.exe
|
|
|
|
cp ocaml $(BINDIR)\ocaml.exe
|
1996-02-21 02:49:46 -08:00
|
|
|
cd stdlib & $(MAKEREC) install
|
1996-04-30 07:53:58 -07:00
|
|
|
cp lex\ocamllex $(BINDIR)\ocamllex.exe
|
|
|
|
cp yacc\ocamlyacc.exe $(BINDIR)\ocamlyacc.exe
|
1996-02-21 02:49:46 -08:00
|
|
|
$(CAMLC) -a -o $(LIBDIR)\toplevellib.cma $(TOPLIB)
|
1996-03-15 02:32:32 -08:00
|
|
|
cp expunge $(LIBDIR)\expunge.exe
|
1996-02-22 04:51:04 -08:00
|
|
|
cp toplevel\topmain.cmo $(LIBDIR)\topmain.cmo
|
|
|
|
cp toplevel\toploop.cmi $(LIBDIR)\toploop.cmi
|
|
|
|
cp toplevel\topdirs.cmi $(LIBDIR)\topdirs.cmi
|
1996-02-21 02:49:46 -08:00
|
|
|
cd tools & $(MAKEREC) install
|
1996-03-11 05:58:14 -08:00
|
|
|
for %i in ($(OTHERLIBRARIES)) do (cd otherlibs\%i & $(MAKEREC) install & cd ..\..)
|
1996-03-18 04:07:01 -08:00
|
|
|
cd wingui & $(MAKE) -nologo install
|
|
|
|
copy /a README.win32 $(DISTRIB)\Readme.txt
|
|
|
|
copy /a LICENSE $(DISTRIB)\License.txt
|
|
|
|
copy /a Changes $(DISTRIB)\Changes.txt
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
# Installation of the native-code compiler
|
|
|
|
installopt:
|
|
|
|
cd asmrun & $(MAKEREC) install
|
1996-04-30 07:53:58 -07:00
|
|
|
cp ocamlopt $(BINDIR)\ocamlopt.exe
|
1996-02-21 02:49:46 -08:00
|
|
|
cd stdlib & $(MAKEREC) installopt
|
1996-02-22 04:51:04 -08:00
|
|
|
for %i in ($(OTHERLIBRARIES)) do (cd otherlibs\%i & $(MAKEREC) installopt & cd ..\..)
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
realclean:: clean
|
|
|
|
|
|
|
|
# The compiler
|
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
ocamlc: $(COMPOBJS)
|
|
|
|
$(CAMLC) $(LINKFLAGS) -o ocamlc $(COMPOBJS)
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
clean::
|
1996-04-30 07:53:58 -07:00
|
|
|
rm -f ocamlc
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
# The native-code compiler
|
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
ocamlopt: $(OPTOBJS)
|
|
|
|
$(CAMLC) $(LINKFLAGS) -o ocamlopt $(OPTOBJS)
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
clean::
|
1996-04-30 07:53:58 -07:00
|
|
|
rm -f ocamlopt
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
# The toplevel
|
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
ocaml: $(TOPOBJS) expunge
|
|
|
|
$(CAMLC) $(LINKFLAGS) -linkall -o ocaml.tmp $(TOPOBJS)
|
|
|
|
- $(CAMLRUN) .\expunge ocaml.tmp ocaml $(PERVASIVES)
|
|
|
|
rm -f ocaml.tmp
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
clean::
|
1996-04-30 07:53:58 -07:00
|
|
|
rm -f ocaml
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
# The configuration file
|
|
|
|
|
|
|
|
utils\config.ml: utils\config.mlp config\Makefile.nt
|
|
|
|
@rm -f utils\config.ml
|
|
|
|
sed -e "s|%%%%LIBDIR%%%%|$(LIBDIR:\=/)|" \
|
|
|
|
-e "s|%%%%BYTECC%%%%|$(BYTECC) $(BYTECCLINKOPTS)|" \
|
|
|
|
-e "s|%%%%NATIVECC%%%%|$(NATIVECC) $(NATIVECCLINKOPTS)|" \
|
|
|
|
-e "s|%%%%CCLIBS%%%%|$(CCLIBS)|" \
|
|
|
|
-e "s|%%%%ARCH%%%%|$(ARCH)|" \
|
|
|
|
-e "s|%%%%MODEL%%%%|$(MODEL)|" \
|
|
|
|
-e "s|%%%%SYSTEM%%%%|$(SYSTEM)|" \
|
|
|
|
-e "s|%%%%EXT_OBJ%%%%|.obj|" \
|
|
|
|
-e "s|%%%%EXT_ASM%%%%|.asm|" \
|
|
|
|
-e "s|%%%%EXT_LIB%%%%|.lib|" \
|
|
|
|
utils\config.mlp > utils\config.ml
|
|
|
|
@attrib +r utils\config.ml
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f utils\config.ml
|
|
|
|
|
|
|
|
beforedepend:: utils\config.ml
|
|
|
|
|
|
|
|
# The parser generator
|
|
|
|
|
|
|
|
parsing\parser.mli parsing\parser.ml: parsing\parser.mly
|
|
|
|
$(CAMLYACC) $(YACCFLAGS) parsing\parser.mly
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f parsing\parser.mli parsing\parser.ml parsing\parser.output
|
|
|
|
|
|
|
|
beforedepend:: parsing\parser.mli parsing\parser.ml
|
|
|
|
|
|
|
|
# The lexer generator
|
|
|
|
|
|
|
|
parsing\lexer.ml: parsing\lexer.mll
|
|
|
|
$(CAMLLEX) parsing\lexer.mll
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f parsing\lexer.ml
|
|
|
|
|
|
|
|
beforedepend:: parsing\lexer.ml
|
|
|
|
|
|
|
|
# The compiler compiled with the native-code compiler
|
|
|
|
# Currently not working because it requires C primitives from byterun\meta.c
|
|
|
|
# which are not provided by asmrun\libasmrun.lib
|
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
# ocamlc.opt: $(COMPOBJS:.cmo=.cmx)
|
|
|
|
# $(CAMLOPT) $(LINKFLAGS) -o ocamlc.opt $(COMPOBJS:.cmo=.cmx)
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
clean::
|
1996-04-30 07:53:58 -07:00
|
|
|
rm -f ocamlc.opt
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
# The native-code compiler compiled with itself
|
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
ocamlopt.opt: $(OPTOBJS:.cmo=.cmx)
|
|
|
|
$(CAMLOPT) $(LINKFLAGS) -o ocamlopt.opt $(OPTOBJS:.cmo=.cmx)
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
clean::
|
1996-04-30 07:53:58 -07:00
|
|
|
rm -f ocamlopt.opt
|
1996-02-21 02:49:46 -08:00
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
$(OPTOBJS:.cmo=.cmx): ocamlopt
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
# The numeric opcodes
|
|
|
|
|
|
|
|
bytecomp\opcodes.ml: byterun\instruct.h
|
|
|
|
sed -n -e "/^enum/p" -e "s|,||g" -e "/^ /p" byterun\instruct.h | \
|
|
|
|
gawk -f tools\make-opcodes > bytecomp\opcodes.ml
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f bytecomp\opcodes.ml
|
|
|
|
|
|
|
|
beforedepend:: bytecomp\opcodes.ml
|
|
|
|
|
|
|
|
# The predefined exceptions and primitives
|
|
|
|
|
|
|
|
runtime\primitives:
|
|
|
|
cd runtime & $(MAKEREC) primitives
|
|
|
|
|
|
|
|
bytecomp\runtimedef.ml: byterun\primitives byterun\fail.h
|
|
|
|
echo let builtin_exceptions = ^[^| > bytecomp\runtimedef.ml
|
|
|
|
sed -n -e "s|.*/\* \(\"[A-Za-z_]*\"\) \*/$$| \1;|p" byterun\fail.h | \
|
|
|
|
sed -e "$$s|;$$||" >> bytecomp\runtimedef.ml
|
|
|
|
echo ^|^] >> bytecomp\runtimedef.ml
|
|
|
|
echo let builtin_primitives = ^[^| >> bytecomp\runtimedef.ml
|
|
|
|
sed -e "s|.*| \"^&\";|" -e "$$s|;$$||" byterun\primitives \
|
|
|
|
>> bytecomp\runtimedef.ml
|
|
|
|
echo ^|^] >> bytecomp\runtimedef.ml
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f bytecomp\runtimedef.ml
|
|
|
|
|
|
|
|
beforedepend:: bytecomp\runtimedef.ml
|
|
|
|
|
|
|
|
# Choose the right arch, emit and proc files
|
|
|
|
|
|
|
|
asmcomp\arch.ml: asmcomp\arch_$(ARCH).ml
|
|
|
|
cp asmcomp\arch_$(ARCH).ml asmcomp\arch.ml
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f asmcomp\arch.ml
|
|
|
|
|
|
|
|
beforedepend:: asmcomp\arch.ml
|
|
|
|
|
1996-02-22 04:51:04 -08:00
|
|
|
asmcomp\proc.ml: asmcomp\proc_$(ARCH)nt.ml
|
1996-02-21 02:49:46 -08:00
|
|
|
cp asmcomp\proc_$(ARCH)nt.ml asmcomp\proc.ml
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f asmcomp\proc.ml
|
|
|
|
|
|
|
|
beforedepend:: asmcomp\proc.ml
|
|
|
|
|
|
|
|
# Preprocess the code emitters
|
|
|
|
|
|
|
|
asmcomp\emit.ml: asmcomp\emit_$(ARCH)nt.mlp tools\cvt_emit
|
|
|
|
perl tools\cvt_emit asmcomp\emit_$(ARCH)nt.mlp > asmcomp\emit.ml
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f asmcomp\emit.ml
|
|
|
|
|
|
|
|
beforedepend:: asmcomp\emit.ml
|
|
|
|
|
|
|
|
# The "expunge" utility
|
|
|
|
|
|
|
|
expunge: $(EXPUNGEOBJS)
|
|
|
|
$(CAMLC) $(LINKFLAGS) -o expunge $(EXPUNGEOBJS)
|
|
|
|
|
|
|
|
clean::
|
|
|
|
rm -f expunge
|
|
|
|
|
|
|
|
# The runtime system for the bytecode compiler
|
|
|
|
|
|
|
|
runtime:
|
|
|
|
cd byterun & $(MAKEREC) all
|
|
|
|
realclean::
|
|
|
|
cd byterun & $(MAKEREC) clean
|
|
|
|
alldepend::
|
|
|
|
cd byterun & $(MAKEREC) depend
|
|
|
|
|
|
|
|
# The runtime system for the native-code compiler
|
|
|
|
|
|
|
|
runtimeopt: makeruntimeopt stdlib\libasmrun.lib
|
|
|
|
|
|
|
|
makeruntimeopt:
|
|
|
|
cd asmrun & $(MAKEREC) all
|
|
|
|
stdlib\libasmrun.lib: asmrun\libasmrun.lib
|
|
|
|
cp asmrun\libasmrun.lib stdlib\libasmrun.lib
|
|
|
|
realclean::
|
|
|
|
cd asmrun & $(MAKEREC) clean
|
|
|
|
alldepend::
|
|
|
|
cd asmrun & $(MAKEREC) depend
|
|
|
|
|
|
|
|
# The library
|
|
|
|
|
|
|
|
library:
|
|
|
|
cd stdlib & $(MAKEREC) all
|
|
|
|
library-cross:
|
1996-04-30 07:53:58 -07:00
|
|
|
cd stdlib & $(MAKEREC) RUNTIME=..\byterun\ocamlrun all
|
1996-02-21 02:49:46 -08:00
|
|
|
libraryopt:
|
|
|
|
cd stdlib & $(MAKEREC) allopt
|
|
|
|
clean::
|
|
|
|
cd stdlib & $(MAKEREC) clean
|
|
|
|
alldepend::
|
|
|
|
cd stdlib & $(MAKEREC) depend
|
|
|
|
|
|
|
|
# The lexer and parser generators
|
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
ocamllex:
|
1996-02-21 02:49:46 -08:00
|
|
|
cd lex & $(MAKEREC) all
|
|
|
|
clean::
|
|
|
|
cd lex & $(MAKEREC) clean
|
|
|
|
alldepend::
|
|
|
|
cd lex & $(MAKEREC) depend
|
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
ocamlyacc:
|
1996-02-21 02:49:46 -08:00
|
|
|
cd yacc & $(MAKEREC) all
|
|
|
|
realclean::
|
|
|
|
cd yacc & $(MAKEREC) clean
|
|
|
|
|
|
|
|
# Tools
|
|
|
|
|
1996-04-30 07:53:58 -07:00
|
|
|
ocamltools:
|
1996-02-21 02:49:46 -08:00
|
|
|
cd tools & $(MAKEREC) all
|
1996-02-26 05:52:15 -08:00
|
|
|
clean::
|
1996-02-21 02:49:46 -08:00
|
|
|
cd tools & $(MAKEREC) clean
|
|
|
|
alldepend::
|
|
|
|
cd tools & $(MAKEREC) depend
|
|
|
|
|
|
|
|
# The extra libraries
|
|
|
|
|
|
|
|
otherlibraries:
|
1996-02-22 04:51:04 -08:00
|
|
|
-for %i in ($(OTHERLIBRARIES)) do (cd otherlibs\%i & $(MAKEREC) all & cd ..\..)
|
1996-02-21 02:49:46 -08:00
|
|
|
otherlibrariesopt:
|
1996-02-22 04:51:04 -08:00
|
|
|
-for %i in ($(OTHERLIBRARIES)) do (cd otherlibs\%i & $(MAKEREC) allopt & cd ..\..)
|
1996-02-21 02:49:46 -08:00
|
|
|
clean::
|
1996-02-22 04:51:04 -08:00
|
|
|
-for %i in ($(OTHERLIBRARIES)) do (cd otherlibs\%i & $(MAKEREC) clean & cd ..\..)
|
1996-02-21 02:49:46 -08:00
|
|
|
realclean::
|
1996-02-22 04:51:04 -08:00
|
|
|
-for %i in ($(OTHERLIBRARIES)) do (cd otherlibs\%i & $(MAKEREC) realclean & cd ..\..)
|
1996-02-21 02:49:46 -08:00
|
|
|
alldepend::
|
1996-02-22 04:51:04 -08:00
|
|
|
-for %i in ($(OTHERLIBRARIES)) do (cd otherlibs\%i & $(MAKEREC) depend & cd ..\..)
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
# Default rules
|
|
|
|
|
|
|
|
.SUFFIXES: .ml .mli .cmo .cmi .cmx
|
|
|
|
|
|
|
|
.ml.cmo:
|
|
|
|
$(CAMLC) $(COMPFLAGS) -c $<
|
|
|
|
|
|
|
|
.mli.cmi:
|
|
|
|
$(CAMLC) $(COMPFLAGS) -c $<
|
|
|
|
|
|
|
|
.ml.cmx:
|
|
|
|
$(CAMLOPT) $(COMPFLAGS) -c $<
|
|
|
|
|
|
|
|
clean::
|
1996-02-26 05:52:15 -08:00
|
|
|
rm -f utils/*.cm* utils/*.obj utils/*.asm
|
|
|
|
rm -f parsing/*.cm* parsing/*.obj parsing/*.asm
|
|
|
|
rm -f typing/*.cm* typing/*.obj typing/*.asm
|
|
|
|
rm -f bytecomp/*.cm* bytecomp/*.obj bytecomp/*.asm
|
|
|
|
rm -f asmcomp/*.cm* asmcomp/*.obj asmcomp/*.asm
|
|
|
|
rm -f driver/*.cm* driver/*.obj driver/*.asm
|
|
|
|
rm -f toplevel/*.cm* toplevel/*.obj toplevel/*.asm
|
|
|
|
rm -f tools/*.cm* tools/*.obj tools/*.asm
|
1996-02-21 02:49:46 -08:00
|
|
|
|
|
|
|
depend: beforedepend
|
|
|
|
echo > .depend
|
|
|
|
for %d in (utils parsing typing bytecomp asmcomp driver toplevel) do $(CAMLDEP) $(DEPFLAGS) %d\*.mli %d\*.ml >> .depend
|
|
|
|
|
|
|
|
alldepend:: depend
|
|
|
|
|
|
|
|
!include .depend
|