home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / elistb.zip / MAKEFILE < prev    next >
Text File  |  1993-05-15  |  539b  |  35 lines

  1.  
  2. OBJS=test.obj
  3.  
  4. all: test.exe test.res
  5.  
  6. zip:
  7.   echo a>test.exe
  8.   echo a>test.obj
  9.   echo a>test.res
  10.   del test.exe
  11.   del test.obj
  12.   del test.res
  13.   zip elistbox    *.*  -xerrs
  14.  
  15. # so that the dialog editor will work
  16. test.res: test.rc test.dlg dialog.h
  17.    rc -r test.rc
  18.  
  19. test.obj: test.cpp dialog.h elistbox.hpp
  20.  
  21.  
  22. test.exe:: $(OBJS)
  23.    link386  @<<
  24.     $(DEBUG) +
  25.     /CO /NOL /PM:PM +
  26.     $(**: =+^
  27.     )
  28.     ,,NUL,
  29.     ;
  30. <<
  31.  
  32. test.exe::test.rc dialog.h test.res test.obj
  33.    rc test.res test.exe
  34. #    rc test.rc
  35.