https://github.com/charguer/ocaml
Raw File
Tip revision: 4ec85e26f3059bd0162e4df5073593e42fbafc9e authored by Alain Frisch on 23 January 2010, 12:42:09 UTC
Fix SVN properties.
Tip revision: 4ec85e2
Makefile.nt
#########################################################################
#                                                                       #
#                            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 Q Public License version 1.0.                #
#                                                                       #
#########################################################################

# $Id$

include Makefile.shared

# To make custom toplevels

OCAMLMKTOP=ocamlmktop.cmo
OCAMLMKTOP_IMPORTS=misc.cmo config.cmo clflags.cmo ccomp.cmo

ocamlmktop: $(OCAMLMKTOP)
	$(CAMLC) $(LINKFLAGS) -o ocamlmktop $(OCAMLMKTOP_IMPORTS) $(OCAMLMKTOP)
back to top