#
# DMakefile  V3.0
#
# Makefile for ToolManager 3.0 (Locale: Library & Tools)
#
# Copyright (C) 1990-97 Stefan Becker
#
# This source code is for educational purposes only. You may study it
# and copy ideas or algorithms from it for your own projects. It is
# not allowed to use any of the source codes (in full or in parts)
# in other programs. Especially it is not allowed to create variants
# of ToolManager or ToolManager-like programs from this source code.
#
LANG  = dansk deutsch français italiano polski srpski svenska
CDIR  = //Locale/Catalogs/
CATD  = $(LANG:"*":"$(CDIR)*")
CATF  = $(LANG:"*":"$(CDIR)*/toolmanager.catalog")
TRANS = $(LANG:"*":"*.ct")
DESC  = toolmanager.cd
HEAD  = toolmanager.h
EMPTY = empty.ct

all : $(HEAD) $(EMPTY) $(CATD) $(CATF)

$(HEAD) : $(DESC)
      CatComp $(DESC) CFILE %(left) NOARRAY NOBLOCK NOCODE

$(EMPTY) : $(DESC)
      CatComp $(DESC) CTFILE %(left)

$(CATF) : $(TRANS)
      CatComp $(DESC) %(right) CATALOG %(left)

$(CATF) : $(DESC)

$(CATD) : $(CATD)
      MakeDir %(left)

clean   :
      -Delete $(HEAD) $(EMPTY)
