|
|
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: ! 16: !ifndef NTMFC ! 17: helloapp.exe: helloapp.obj helloapp.def ! 18: link /NOD /ONERROR:NOEXE helloapp,,,safxcw libw slibcew,helloapp.def; ! 19: rc -30 /t helloapp.exe ! 20: ! 21: helloapp.obj: helloapp.cpp ! 22: cl /DWINVER=0x0300 /Zp /Oxs /c helloapp.cpp ! 23: !else ! 24: !include ..\ntsample.mak ! 25: ! 26: OBJS=helloapp.obj ! 27: ! 28: helloapp.exe: $(OBJS) helloapp.def ! 29: $(LINK) $(GUIFLAGS) -out:helloapp.exe helloapp.obj $(MFCLIB) $(GUILIBS) ! 30: ! 31: !endif ! 32: ! 33: clean: ! 34: -del helloapp.exe ! 35: -del helloapp.obj
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.