home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / chap06 / ekoala4 / makefile < prev    next >
Makefile  |  1995-05-03  |  941b  |  48 lines

  1. #
  2. # MAKEFILE
  3. # Koala Object with Custom Interface Chapter 6
  4. #
  5. # Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  6. #
  7. # Kraig Brockschmidt, Microsoft
  8. # Internet  :  kraigb@microsoft.com
  9. # Compuserve:  >INTERNET:kraigb@microsoft.com
  10. #
  11.  
  12. #Add '#' to the next line for 'noisy' operation
  13. !CMDSWITCHES +s
  14.  
  15. !ifdef WIN16
  16. !ERROR This sample only compiles and runs under Win32
  17. !endif
  18.  
  19. TARGET  = ekoala4
  20. OUTFILE = ekoala4.exe
  21.  
  22. NODOC      = 1
  23. NOUILIB    = 1
  24. NOOCLIB    = 1
  25. NOPRECOMP  = 1
  26. NOCLASSLIB = 1
  27.  
  28. INCLS   = $(TARGET).h koala.h
  29.  
  30. OBJS1   = $(TARGET).obj koala.obj
  31. OBJS2   = ""
  32. OBJS3   = ""
  33. OBJS4   = ""
  34. OBJS5   = ""
  35. OBJS6   = ""
  36. OBJS    = $(OBJS1)
  37.  
  38. RCFILES = koala.ico
  39.  
  40. !include "..\\..\\inole-a.mak"
  41. !include "..\\..\\inole-b.mak"
  42.  
  43. ##### Dependencies #####
  44.  
  45. $(TARGET).obj : $(TARGET).cpp $(INCLS)
  46. koala.obj     : koala.cpp     $(INCLS)
  47. $(TARGET).res : $(TARGET).rc  $(INCLS) $(RCFILES)
  48.