# 
# The LOOP Project
# 
# The LOOP Team, Dresden University and Nijmegen University
# 
# Copyright (C) 2002
# 
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of
# the License, or (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License in file COPYING in this or one of the
# parent directories for more details.
# 
# Adopted 29.1.99 by Hendrik to Loop Version 1
# 
# Time-stamp: <Monday 8 October 01 17:58:00 tews@ithif51>
# 
# Makefile for hash function generator
# 
# $Id: GNUmakefile,v 1.7 2010-10-19 19:09:20 tews Exp $
# 

include ../Common/CommonMakefile

IFACE=yacc_grammar.mli

OBJECTS=global.cmo yacc_lexer.cmo yacc_grammar.cmo main.cmo

all: keys

keys: $(IFACE) $(OBJECTS)
	$(OCAMLC) -o keys  $(OBJECTS)

clean::
	rm -f keys 
	rm -f yacc_lexer.ml yacc_grammar.ml yacc_grammar.mli

realclean:: clean

yacc_lexer.cmo: yacc_grammar.cmi
yacc_lexer.ml: yacc_lexer.mll
yacc_grammar.cmo: yacc_grammar.ml yacc_grammar.cmi global.cmo
main.cmo: yacc_grammar.cmi yacc_lexer.cmo

include .depend

### Local Variables: ***
### version-control: t ***
### kept-new-versions: 5 ***
### time-stamp-line-limit: 30 ***
### End: ***
