home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / lower.zip / source.zip / makefile < prev    next >
Makefile  |  1993-11-08  |  284b  |  12 lines

  1. OPTS = -q -O -gd
  2.  
  3. lower.exe: lower.obj lower.res makefile
  4.        icc -B"/pm:pm" -B"/stack:100000" $(OPTS) lower.obj
  5.        rc lower.res lower.exe
  6.  
  7. lower.res: lower.rc lower.ico X.ptr makefile
  8.        rc -r lower.rc
  9.  
  10. lower.obj: lower.c makefile
  11.        icc -c $(OPTS) lower.c
  12.