home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / OS2LHX.LZH / MAKEFILE < prev   
Text File  |  1989-08-27  |  568b  |  24 lines

  1. cflags = -Zp -W3 -D LINT_ARGS -Ox
  2. #cflags = -Zp -W3 -D LINT_ARGS -Od -Zd -D DEBUG
  3.  
  4. lhx.obj:        lhx.c lhx.h
  5.     cl -c $(cflags) $*.c
  6.  
  7. lhproc.obj:        lhproc.c lhx.h
  8.     cl -c $(cflags) $*.c
  9.  
  10. lhscan.obj:        lhscan.c lhx.h
  11.     cl -c $(cflags) $*.c
  12.  
  13. addbfcrc.obj:    addbfcrc.c
  14.     cl -c $(cflags) $*.c
  15.  
  16. crcdefs.obj:    crcdefs.c
  17.     cl -c $(cflags) $*.c
  18.  
  19. lzhufd.obj:    lzhufd.c lhx.h
  20.     cl -c $(cflags) $*.c
  21.  
  22. lhx.exe: lhx.obj lhproc.obj lhscan.obj addbfcrc.obj crcdefs.obj lzhufd.obj
  23.     link /map /li lhx lhproc lhscan addbfcrc crcdefs lzhufd,lhx,lhx,doscalls;
  24.