#***************************************************************
#* File Id.                     MAKFIL.                        *
#* Author.                      Stan Milam.                    *
#*                                                             *
#* Purpose:  The MAKE programs from Borland and Zortech do not *
#* support recursion as a true UNIX-like MAKE will.  Only the  *
#* Microsoft make utility, NMAKE, works as it should.  So I    *
#* created this file which is executed from the main MAKEFILE  *
#* when Borland's C or Zortech's C is used.                    *
#* Yeah, I know, it's a hack, but all I ask is a MAKE utility  *
#* that really works!                                          *
#*                                                             *
#***************************************************************

OBJ=pcwdemo.obj files.obj demos.obj demo_a.obj demo_b.obj demo_c.obj \
    demo_d.obj demo_e.obj

.c.obj:
       $(CC) -c -I..\pcw -mm $*.c

pcwdemo.exe: $(OBJ)
       $(CC) -mm $(OBJ) ..\$(LB)
