home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / d / d020_1_4 / 5.ddi / DDE / CLIENT < prev    next >
Encoding:
Text File  |  1990-06-01  |  558 b   |  21 lines

  1. all: client.exe
  2.  
  3. client.res: client.rc client.dlg clires.h
  4.     rc -r client.rc
  5.  
  6. client.obj: client.c clires.h client.h
  7.     cl -c -AM -Gsw -Zpe -NT CLIENT client.c
  8.  
  9. clidata.obj: clidata.c clires.h client.h
  10.     cl -c -AM -Gsw -Zpe -NT CLIDATA clidata.c
  11.  
  12. clidde.obj: clidde.c clires.h client.h
  13.     cl -c -AM -Gsw -Zpe -NT CLIDDE clidde.c
  14.  
  15. client.exe: client.obj clidata.obj clidde.obj client.def client.res
  16.     link /NOD client clidata clidde, /align:16,, libw mlibcew, client.def
  17.     rc client.res
  18.  
  19. client.exe: client.res
  20.     rc client.res
  21.