diff options
Diffstat (limited to 'otherlibs/dynlink/Makefile.nt')
-rw-r--r-- | otherlibs/dynlink/Makefile.nt | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/otherlibs/dynlink/Makefile.nt b/otherlibs/dynlink/Makefile.nt deleted file mode 100644 index 6718083d93..0000000000 --- a/otherlibs/dynlink/Makefile.nt +++ /dev/null @@ -1,62 +0,0 @@ -######################################################################### -# # -# Objective Caml # -# # -# Xavier Leroy, projet Cristal, INRIA Rocquencourt # -# # -# Copyright 1999 Institut National de Recherche en Informatique et # -# en Automatique. All rights reserved. This file is distributed # -# under the terms of the GNU Library General Public License, with # -# the special exception on linking described in file ../../LICENSE. # -# # -######################################################################### - -# $Id$ - -# Makefile for the dynamic link library - -include ../../config/Makefile - -CAMLC=../../boot/ocamlrun ../../ocamlc -INCLUDES=-I ../../utils -I ../../typing -I ../../bytecomp -COMPFLAGS=-warn-error A -I ../../stdlib $(INCLUDES) - -OBJS=dynlink.cmo -COMPILEROBJS=misc.cmo config.cmo tbl.cmo clflags.cmo consistbl.cmo \ - ident.cmo path.cmo \ - types.cmo btype.cmo predef.cmo runtimedef.cmo \ - bytesections.cmo dll.cmo symtable.cmo opcodes.cmo meta.cmo - -all: dynlink.cma extract_crc - -allopt: - -dynlink.cma: $(OBJS) - $(CAMLC) $(COMPFLAGS) -a -o dynlink.cma $(COMPILEROBJS) $(OBJS) - -extract_crc: dynlink.cma extract_crc.cmo - $(CAMLC) $(COMPFLAGS) -o extract_crc dynlink.cma extract_crc.cmo - -install: - cp dynlink.cmi dynlink.cma dynlink.mli $(LIBDIR) - cp extract_crc $(LIBDIR)/extract_crc.exe - -installopt: - -partialclean: - rm -f extract_crc *.cm[ioa] - -clean: partialclean - -.SUFFIXES: .ml .mli .cmo .cmi - -.mli.cmi: - $(CAMLC) -c $(COMPFLAGS) $< - -.ml.cmo: - $(CAMLC) -c $(COMPFLAGS) $< - -depend: - ../../boot/ocamlrun ../../tools/ocamldep $(INCLUDES) *.mli *.ml >.depend - -include .depend |