###########################################################################
#
#   MAKE-MY-DAY file for DEMO
#   for Watcom C Compiler & Rational Systems DOS/4GW
#
#   Programmer : Tan Khir Hien
#   Copyright Creative Labs/Creative Technology Ltd, 1994
#
###########################################################################

INC=..\include
CFLAGS=-mf -oilms
APILIB=..\flat\pawe32.lib

demo.exe:    demo.obj $(APILIB)
             wlink f $* lib $(APILIB)

demo.obj:    demo.c
             wcc386 $(CFLAGS) -I$(INC) demo.c

