#############################################################
# 
# A part of Regexp/OCaml module.
# 
# (c) 2002-2003 Yutaka Oiwa. All Rights Reserved.
# 
# This file is distributed under the terms of the GNU Library
# General Public License, with the special exception on
# linking described in file ../LICENSE.
#
#############################################################

OCAMLMAKEFILE = ../OCamlMakefile

RESULT = declare_once
SOURCES   = declare_once.mli declare_once.ml
USE_CAMLP4 = 1
PRE_TARGETS = version_filter
TRASH = version_filter.cmo version_filter.cmi

all: byte-code-nolink

version_filter: version_filter.ml
	$(MAKE) -f $(OCAMLMAKEFILE) \
	RESULT=version_filter \
	SOURCES=version_filter.ml \
	LIBS="str unix" \
	bc

-include $(OCAMLMAKEFILE)

