|
|
1.1 root 1: # Makefile : Builds the helloapp application
2: #
3: # Usage: NMAKE helloapp
4:
5: # This is a part of the Microsoft Foundation Classes C++ library.
6: # Copyright (C) 1992 Microsoft Corporation
7: # All rights reserved.
8: #
9: # This source code is only intended as a supplement to the
10: # Microsoft Foundation Classes Reference and Microsoft
11: # QuickHelp documentation provided with the library.
12: # See these sources for detailed information regarding the
13: # Microsoft Foundation Classes product.
14: #
15:
1.1.1.2 ! root 16: !ifdef WIN16MFC
! 17: #!message compiling for WIN16
! 18:
1.1 root 19: helloapp.exe: helloapp.obj helloapp.def
20: link /NOD /ONERROR:NOEXE helloapp,,,safxcw libw slibcew,helloapp.def;
21: rc -30 /t helloapp.exe
22:
23: helloapp.obj: helloapp.cpp
24: cl /DWINVER=0x0300 /Zp /Oxs /c helloapp.cpp
25: !else
26: !include ..\ntsample.mak
27:
28: OBJS=helloapp.obj
29:
30: helloapp.exe: $(OBJS) helloapp.def
31: $(LINK) $(GUIFLAGS) -out:helloapp.exe helloapp.obj $(MFCLIB) $(GUILIBS)
32:
33: !endif
34:
35: clean:
36: -del helloapp.exe
37: -del helloapp.obj
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.