home *** CD-ROM | disk | FTP | other *** search
- #
- # Makefile for Print Sample Application
- # Copyright (c) 1992 Microsoft Corporation. All rights reserved.
- #
-
- CC = cl -c -AM -Gsw -nologo -Od -W3 -Zipe
- LN = link /m/CO/NOD/NOE/NOL/A:16
- SRC = PRNCDLG.c init.c
- OBJ = PRNCDLG.obj init.obj
-
- .c.obj :
- echo Compiling: $*.c
- $(CC) -NT $* $*.c >$*.err
- type $*.err
- del $*.err
-
- PRNCDLG.exe : $(OBJ) PRNCDLG.res PRNCDLG.def
- echo Linking: PRNCDLG.exe
- $(LN) $(OBJ), PRNCDLG.exe, PRNCDLG.map, commdlg mlibcew libw, PRNCDLG.def
- echo Adding Resources
- rc -v PRNCDLG.res PRNCDLG.exe
-
- PRNCDLG.res : PRNCDLG.rc global.h PRNCDLG.ico
- echo RCing: PRNCDLG.rc
- rc -r PRNCDLG.rc
-
-