######################################################################### # # # 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: Makefile.nt,v 1.1.1.1 2002/01/16 09:01:29 cookcu Exp $ !include ..\..\config\Makefile.nt CAMLRUN=..\..\boot\ncamlrun CAMLC=$(CAMLRUN) ..\..\boot\nmlc -I ..\..\boot -nontyping CAMLLEX=$(CAMLRUN) ..\..\boot\nlex # To make custom toplevels ntopgen.exe: ntopgen.cmo $(CAMLC) $(LINKFLAGS) -o ntopgen.exe ntopgen.cmo install:: cp ntopgen.exe $(BINDIR)\ntopgen.exe clean:: rm -f ntopgen.exe .SUFFIXES: .SUFFIXES: .n .cmo .n.cmo: $(CAMLC) -c $(COMPFLAGS) $< clean:: rm -f *.cmo *.cmi