home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / packer / lhx / sources / makefile < prev   
Encoding:
Makefile  |  1994-02-03  |  568 b   |  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.