home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / 1990 / 05 / grdlagen / hello3a.mak < prev    next >
Encoding:
Text File  |  1989-07-29  |  730 b   |  24 lines

  1. #*****************************************************/
  2. #                                                    */
  3. # PROGRAM NAME: hello3a.mak                          */
  4. # -------------                                      */
  5. # hier mit Codeview-Informationen uebersetzt         */
  6. #*****************************************************/
  7.  
  8.  
  9. CODE_OPT=-c  -AS -Zi  -G2sw  -W3
  10.  
  11.  
  12. hello3a.obj: hello3a.c  hello3a.h
  13.         cl  $(CODE_OPT)  hello3a.c
  14.  
  15. hello3a.res: hello3a.rc  hello3a.h
  16.     rc -r hello3a.rc
  17.  
  18. hello3a.exe: hello3a.obj  hello3a.def
  19.         link  hello3a.obj, /A:16, ,os2.lib+slibce /NOD /CO, hello3a.def
  20.         rc  hello3a.res  hello3a.exe
  21.  
  22. hello3a.exe: hello3a.res
  23.         rc  hello3a.res  hello3a.exe
  24.