# ----------------------------------------------------------------------------
# - Makefile                                                                 -
# - aleph doc - etc directory - installation guide 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
DOCSFILE	= $(MAKDIR)/aleph-docs.mak
include		  $(CONFFILE)

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

DSTDIR		= $(BLDDST)/tex/etc

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

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

all:
	@exit 0
.PHONY: all

# include: aleph-docs.mak
# this rule includes the documentation rules

include $(DOCSFILE)

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

distri:
	@$(MKDIR) $(DSTDIR)
	@$(CP)    Makefile      $(DSTDIR)
	@$(CP)    man10.clo     $(DSTDIR)
	@$(CP)    man11.clo     $(DSTDIR)
	@$(CP)    man12.clo     $(DSTDIR)
	@$(CP)    mana4.clo     $(DSTDIR)
	@$(CP)    manlt.clo     $(DSTDIR)
	@$(CP)    manual.cls    $(DSTDIR)
	@$(CP) 	  aleph.sty     $(DSTDIR)
	@$(CP)    preface.tex   $(DSTDIR)
	@$(CP)    license.tex   $(DSTDIR)
	@$(CP)    colophon.tex  $(DSTDIR)
	@$(CP)    copyright.tex $(DSTDIR)
.PHONY: distri
