home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / graphics / directx / stretch3 / sources < prev    next >
Text File  |  1997-07-14  |  1KB  |  51 lines

  1. !IF 0
  2.  
  3. Copyright (c) 1995-1996  Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     sources.
  8.  
  9. Abstract:
  10.  
  11.     This file specifies the target component being built and the list of
  12.     sources files needed to build that component.  Also specifies optional
  13.     compiler switches and libraries that are unique for the component being
  14.     built.
  15.  
  16. !ENDIF
  17.  
  18. MAJORCOMP=
  19. MINORCOMP=
  20.  
  21. TARGETNAME=stretch
  22. TARGETPATH=obj
  23. TARGETTYPE=PROGRAM
  24. TARGETLIBS=$(BASEDIR)\Public\sdk\lib\*\ddraw.lib
  25.  
  26. INCLUDES=$(BASEDIR)\Public\sdk\inc;..\misc
  27.  
  28. SOURCES=stretch.cpp \
  29.         stretch.rc  \
  30.         ddmm.cpp    \
  31.         ddutil.cpp
  32.  
  33. #
  34. # I suspect "WIN32" is defined by default, but just in case...
  35. #
  36. C_DEFINES= -DWIN32
  37.  
  38. UMENTRY=winmain
  39. UMTYPE=windows
  40. UMAPPL=
  41. UMLIBS=
  42.  
  43. #
  44. # The NTTARGETFILE entry tells BUILD to include MAKEFILE.INC and add "MISC" to
  45. # the dependecies (Don't ask me how it tells it to do this).  We need this in
  46. # order to get DDUTIL.CPP copied from the MISC directory into this directory.
  47. # All files in the "SOURCE=" list have to be in the current directory. Take a
  48. # look at MAKEFILE.INC in this directory.
  49. #
  50. NTTARGETFILE0=MISC
  51.