# ----------------------------------------------------------------------------
# - Makefile                                                                 -
# - aleph cross librarian test makefile                                      -
# ----------------------------------------------------------------------------
# - This program is  free software;  you can  redistribute it and/or  modify -
# - it provided that this copyright notice is kept intact.                   -
# -                                                                          -
# - 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. In not event shall -
# - the copyright holder be  liable for  any direct, indirect, incidental or -
# - special damages arising in any way out of the use of this software.      -
# ----------------------------------------------------------------------------
# - copyright (c) 1999-2003 amaury darsch                                    -
# ----------------------------------------------------------------------------

TOPDIR		= ../../../..
MAKDIR		= $(TOPDIR)/cnf/mak
CONFFILE	= $(MAKDIR)/aleph-conf.mak
RULEFILE	= $(MAKDIR)/aleph-rule.mak
include		  $(CONFFILE)

# ----------------------------------------------------------------------------
# project configurationn                                                     -
# ----------------------------------------------------------------------------

DSTDIR		= $(BLDDST)/src/clt/axl/tst
TSTALS          = $(wildcard ../../alp/tst/*.als)

# ----------------------------------------------------------------------------
# - project rules                                                            -
# ----------------------------------------------------------------------------

# rule: all
# this rule is the default rule which call the test rule

all: test
.PHONY: all

# include: rule.mak
# this rule includes the platform dependant rules

include $(RULEFILE)

# test.axl
# this rule create the local librarian

test.axl: $(TSTALS)
	@$(LTEST) $(BLDDIR) "axl loading" -c -f test.axl $(TSTALS)

# test
# test the cross librarian

test: test.axl
	@$(XTEST) $(BLDDIR) test.axl
	@$(LTEST) $(BLDDIR) "axl extract" -x -f test.axl
	@$(RM) *.als
.PHONY: test

# rule: distri
# this rule install the exe distribution files

distri:
	@$(MKDIR) $(DSTDIR)
	@$(CP)    Makefile $(DSTDIR)
.PHONY: distri

# clean
# this rule some local files
clean::
	@$(RM) *.axl
	@$(RM) *.als
.PHONY: clean
