#
# DMakefile  V2.0
#
# Makefile for ToolManager 2.0 (ToolManager starter)
#
# (c) 1990-92 Stefan Becker
#
IDIR  = //Programmers/include
LDIR  = //Programmers/dlib
ODIR  = //WBStartup
FLAGS = -mRR -proto -ms -I $(IDIR) -L $(LDIR) -L /locale
SRCS  = ToolManager.c
PRGS  = $(SRCS:"*.c":"$(ODIR)/*")

all: $(PRGS)

$(PRGS) : $(SRCS)
      dcc $(FLAGS) -o %(left) %(right) -ltm -llocale

$(PRGS) : $(IDIR)/libraries/toolmanager.h $(IDIR)/clib/toolmanager_protos.h \
          /locale/toolmanager.h

$(PRGS) : DMakefile
