home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / pmattrac / makefile < prev    next >
Makefile  |  1990-10-14  |  321b  |  16 lines

  1. CFLAGS = -MT -Ozax -Alfw -G2sw
  2. CC = cl
  3. OBJS = pmattrac.obj henon.obj duff.obj kam.obj
  4.  
  5. all: pmattrac.exe
  6.  
  7. pmattrac.exe:: pmattrac.res pmattrac.def $(OBJS) pmattrac.lnk
  8.     link @pmattrac.lnk
  9.     rc pmattrac.res
  10.  
  11. $(OBJS): pmattrac.h common.h
  12.  
  13. pmattrac.res: pmattrac.rc pmattrac.dlg pmattrac.h
  14.     rc -r pmattrac.rc
  15.  
  16.