#
# DMakefile  V3.0
#
# Makefile for ToolManager 3.0 (Examples)
#
# 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.
#
DEVDIR = /
IDIRS  = -I$(DEVDIR)include
LDIRS  = -L$(DEVDIR)dlib
LIBS   = -ltoolmanager
FLAGS  = -3.1 -mRR -mi -ms -proto

all: ShowImage

ShowImage : ShowImage.c
      dcc $(FLAGS) $(IDIRS) -o %(left) %(right) $(LDIRS) $(LIBS)
