#
# pendemo   An "nmake" makefile for the IBM PC version of the inverted
#	    pendulum demonstration.  This version is for use with the version
#	    of nmake distributed with MSC 6.00.  You may need to modify it
#	    for other environments.
#
# Copyright (c) Togai InfraLogic, Inc. 1989, 1990, 1991, 1992.
#
# $Header:   Z:/vcs/common/pendemo.__v   1.9   13 Oct 1992 11:45:38   eah  $
#
# --------------------------------- Changes -----------------------------------
# 10/13/92  eah (1) Updated for breakup of pendemo.c.
# 10/14/92  eah (1) Dropped stuff that only applies if you have the FCDS!
#

all : pendemo.exe

demo.obj: demo.c demo.h pendemo.h
    cl /c /W3 /DANSI /I.\ demo.c

pendemo.obj: pendemo.c pendemo.h
    cl /c /W3 /I.\ pendemo.c

penddraw.obj : penddraw.c pendemo.h
    cl /c /W3 /I.\ penddraw.c

pendutil.obj : pendutil.c pendemo.h
    cl /c /W3 /I.\ pendutil.c

pendemo.exe : demo.obj pendemo.obj penddraw.obj pendutil.obj
    link pendemo penddraw pendutil demo,,nul,graphics;
