74 lines
1.8 KiB
Makefile
74 lines
1.8 KiB
Makefile
#########################################################################
|
|
# #
|
|
# 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$
|
|
|
|
# The lexer generator
|
|
|
|
CAMLC=..\boot\ocamlrun ..\boot\ocamlc -I ..\boot
|
|
CAMLOPT=..\boot\ocamlrun ..\ocamlopt -I ..\stdlib
|
|
COMPFLAGS=
|
|
LINKFLAGS=
|
|
CAMLYACC=..\boot\ocamlyacc
|
|
YACCFLAGS=
|
|
CAMLLEX=..\boot\ocamlrun ..\boot\ocamllex
|
|
CAMLDEP=..\boot\ocamlrun ..\tools\ocamldep
|
|
DEPFLAGS=
|
|
|
|
OBJS=parser.cmo lexer.cmo lexgen.cmo compact.cmo output.cmo main.cmo
|
|
|
|
all: ocamllex
|
|
allopt: ocamllex.op
|
|
|
|
ocamllex: $(OBJS)
|
|
$(CAMLC) $(LINKFLAGS) -o ocamllex $(OBJS)
|
|
|
|
ocamllex.opt: $(OBJS:.cmo=.cmx)
|
|
$(CAMLOPT) -o ocamllex.opt $(OBJS:.cmo=.cmx)
|
|
|
|
clean::
|
|
rm -f ocamllex ocamllex.opt
|
|
rm -f *.cmo *.cmi
|
|
|
|
parser.ml parser.mli: parser.mly
|
|
$(CAMLYACC) $(YACCFLAGS) parser.mly
|
|
|
|
clean::
|
|
rm -f parser.ml parser.mli
|
|
|
|
beforedepend:: parser.ml parser.mli
|
|
|
|
lexer.ml: lexer.mll
|
|
$(CAMLLEX) lexer.mll
|
|
|
|
clean::
|
|
rm -f lexer.ml
|
|
|
|
beforedepend:: lexer.ml
|
|
|
|
.SUFFIXES:
|
|
.SUFFIXES: .ml .cmo .mli .cmi .cmx
|
|
|
|
.ml.cmo:
|
|
$(CAMLC) -c $(COMPFLAGS) $<
|
|
|
|
.mli.cmi:
|
|
$(CAMLC) -c $(COMPFLAGS) $<
|
|
|
|
.ml.cmx:
|
|
$(CAMLOPT) -c $(COMPFLAGS) $<
|
|
|
|
depend: beforedepend
|
|
$(CAMLDEP) *.mli *.ml > .depend
|
|
|
|
!include .depend
|