home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / directx2 / sdk / samples / cgutil / makefile < prev    next >
Encoding:
Makefile  |  1996-05-28  |  506 b   |  17 lines

  1. all : debug retail
  2.  
  3. debug:
  4.     @if not exist ..\lib\nul  md ..\lib
  5.     @if not exist ..\lib\debug\nul md ..\lib\debug
  6.     nmake /f cgutil.mak  CFG="Win32 Debug"
  7.     nmake /f linklist.mak CFG="Win32 Debug"
  8.     copy windebug\linklist.lib ..\lib\debug
  9.     
  10. retail:
  11.     @if not exist ..\lib\nul  md ..\lib
  12.     @if not exist ..\lib\retail\nul md ..\lib\retail
  13.     nmake /f cgutil.mak  CFG="Win32 Release"
  14.     nmake /f linklist.mak CFG="Win32 Release"
  15.     copy winrel\linklist.lib ..\lib\retail
  16.  
  17.