# Copyright (C) 2001-2002 The University of Melbourne
# Ralph Becket <rafe@cs.mu.oz.au>
#
# To build do:
#
# $ mmake depend
# $ mmake
#
# The targets are called lex_demo and regex_demo.
#
# Ensure you have built and installed the lex and regex libraries.
# Change the following line as appropriate if you installed them
# elsewhere:
#
#EXTRA_LIB_DIRS := $(INSTALL_PREFIX)/extras/lib/mercury
EXTRA_LIB_DIRS := ../lib/mercury

EXTRA_LIBRARIES = lex regex

.PHONY: all

MAIN_TARGET = all

all: lex_demo regex_demo

depend: lex_demo.depend regex_demo.depend
