64 lines
1.7 KiB
Makefile
64 lines
1.7 KiB
Makefile
#########################################################################
|
|
# #
|
|
# Objective Caml #
|
|
# #
|
|
# Damien Doligez, projet Para, 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:
|
|
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
|
|
|
|
ocamllex Ä {OBJS}
|
|
{CAMLC} {LINKFLAGS} -o ocamllex {OBJS}
|
|
|
|
clean ÄÄ
|
|
delete -i ocamllex
|
|
delete -i Å.cm[io] || set status 0
|
|
|
|
parser.mli Ä parser.ml
|
|
echo -n
|
|
|
|
parser.ml Ä parser.mly
|
|
{CAMLYACC} {YACCFLAGS} parser.mly
|
|
|
|
clean ÄÄ
|
|
delete -i parser.ml parser.mli
|
|
|
|
beforedepend ÄÄ parser.ml parser.mli
|
|
|
|
lexer.ml Ä lexer.mll
|
|
{CAMLLEX} lexer.mll
|
|
|
|
clean ÄÄ
|
|
delete -i lexer.ml
|
|
|
|
beforedepend ÄÄ lexer.ml
|
|
|
|
.cmo Ä .ml
|
|
{CAMLC} -c {COMPFLAGS} {default}.ml
|
|
|
|
.cmi Ä .mli
|
|
{CAMLC} -c {COMPFLAGS} {default}.mli
|
|
|
|
depend Ä beforedepend
|
|
{CAMLDEP} Å.mli Å.ml > Makefile.Mac.depend
|