#############################################################################
#
#                   Copyright (C) 1993 SciTech Software.
#                           All rights reserved.
#
# Descripton:   Generic makefile for the MGL demo program. Calls upon the
#               appropriate include file to bring in the correct definitions
#               for compiling with the sepecified compiler. By default
#               Borland C++ 3.1 is assumed.
#
# $Id$
#
#############################################################################

!include "\makedefs\makedefs.def"

OBJECTS     = demo.obj main.obj explwind.obj titlwind.obj demoarea.obj  \
              demowind.obj ffill.obj getopt.obj

LIBS        = mgraph.lib mvis.lib event.lib tech.lib vec_fl.lib sysinf.lib

demo.exe: $(OBJECTS)
    $(CC) $(CC_FLAGS) @&&|
$(OBJECTS)
$(LIBS)
|

ffill.obj: ..\examples\ffill.c
    $(CC) $(CC_FLAGS) $(COMPILE_ONLY) ..\examples\ffill.c

!include "\makedefs\common.def"

