home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / w3_prog / prncdlg.arj / MAKEFILE < prev    next >
Encoding:
Text File  |  1992-03-03  |  751 b   |  28 lines

  1. #
  2. #   Makefile for Print Sample Application
  3. #   Copyright (c) 1992 Microsoft Corporation. All rights reserved.
  4. #
  5.  
  6. CC     =   cl -c -AM -Gsw -nologo -Od -W3 -Zipe
  7. LN     =   link /m/CO/NOD/NOE/NOL/A:16
  8. SRC    =   PRNCDLG.c init.c
  9. OBJ    =   PRNCDLG.obj init.obj
  10.  
  11. .c.obj      :
  12.         echo Compiling: $*.c
  13.         $(CC) -NT $* $*.c >$*.err
  14.         type $*.err
  15.         del $*.err
  16.  
  17. PRNCDLG.exe    :   $(OBJ) PRNCDLG.res PRNCDLG.def
  18.         echo Linking: PRNCDLG.exe
  19.         $(LN) $(OBJ), PRNCDLG.exe, PRNCDLG.map, commdlg mlibcew libw, PRNCDLG.def
  20.         echo Adding Resources
  21.         rc -v PRNCDLG.res PRNCDLG.exe
  22.  
  23. PRNCDLG.res    :   PRNCDLG.rc global.h PRNCDLG.ico
  24.         echo RCing: PRNCDLG.rc
  25.         rc -r PRNCDLG.rc
  26.  
  27. 
  28.