home *** CD-ROM | disk | FTP | other *** search
/ NEXT Generation 27 / NEXT27.iso / pc / demos / emperor / dx3.exe / SDK / SAMPLES / IKLOWNS / MAKEFILE < prev    next >
Text File  |  1996-08-28  |  823b  |  38 lines

  1. # Master make file.  Creates all necessary sub-components
  2. # of the Immortal Klowns project, while allowing those components
  3. # to be compiled w/VC
  4.  
  5. !IF ("$(CFG)" == "") || ("$(CFG)" == "Win32 Debug")
  6. CFG=Win32 Debug
  7. TARGDIR=debug
  8. TARGET=debug
  9. !ELSE
  10. CFG=Win32 Release
  11. TARGDIR=retail
  12. TARGET=retail
  13. !ENDIF
  14.  
  15. default:
  16.     nmake $(MISC) /nologo /f linklist.mak  CFG="$(CFG)"
  17.     nmake $(MISC) /nologo /f cgutil.mak  CFG="$(CFG)"
  18.  
  19.     nmake $(MISC) /nologo /f splash.mak CFG="$(CFG)"
  20.  
  21.     nmake $(MISC) /nologo /f iklowns.mak CFG="$(CFG)"
  22.  
  23.     nmake $(MISC) /nologo /f cgkrusty.mak CFG="$(CFG)"
  24.  
  25.     nmake $(MISC) /nologo /f misc.mak CFG="$(CFG)"
  26.  
  27. all: debug retail
  28.  
  29. retail:
  30.     nmake CFG="Win32 Release"
  31.  
  32. debug:
  33.     nmake CFG="Win32 Debug"
  34.  
  35. clean:
  36.     @deltree /y retail
  37.     @deltree /y debug
  38.