home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mnth0107.zip / Anderson / listings / makefile.ls < prev    next >
Makefile  |  1992-02-27  |  970b  |  26 lines

  1.             Listing for makefile                                        Page 1
  2.  
  3.             1|   #--------------------
  4.             2|   # edit make file
  5.             3|   #--------------------
  6.             4|   
  7.             5|   edit.exe : edit.obj efile.obj edlg.obj edit.def edit.res edit.hlp
  8.             6|       link edit+efile+edlg, /align:16, NUL, os2, edit
  9.             7|       rc edit.res
  10.             8|   
  11.             9|   edit.hlp : edit.ipf
  12.            10|      ipfc edit.ipf
  13.            11|                   
  14.            12|   edit.obj : edit.c edit.h
  15.            13|      cl -c -G2sw -W3 edit.c
  16.            14|        
  17.            15|   efile.obj : efile.c edit.h
  18.            16|      cl -c -G2sw -W3 efile.c
  19.            17|       
  20.            18|   edlg.obj : edlg.c edit.h
  21.            19|      cl -c -G2sw -W3 edlg.c
  22.            20|   
  23.            21|   edit.res : edit.rc edit.h edit.ico
  24.            22|       rc -r edit.rc
  25.            23|   
  26.