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 / chap05 / dkoala3 / makefile < prev    next >
Makefile  |  1995-05-03  |  861b  |  44 lines

  1. #
  2. # MAKEFILE
  3. # Koala Object DLL Licensed Server Chapter 5
  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. TARGET  = dkoala3
  16. OUTFILE = dkoala3.dll
  17. DLL     = 1
  18. NODOC      = 1
  19. NOUILIB    = 1
  20. NOOCLIB    = 1
  21. NOPRECOMP  = 1
  22. NOCLASSLIB = 1
  23.  
  24. INCLS   = $(TARGET).h koala.h
  25.  
  26. OBJS1   = $(TARGET).obj koala.obj
  27. OBJS2   = ""
  28. OBJS3   = ""
  29. OBJS4   = ""
  30. OBJS5   = ""
  31. OBJS6   = ""
  32. OBJS    = $(OBJS1)
  33.  
  34. RCFILES =
  35.  
  36. !include "..\\..\\inole-a.mak"
  37. !include "..\\..\\inole-b.mak"
  38.  
  39. ##### Dependencies #####
  40.  
  41. $(TARGET).obj : $(TARGET).cpp $(INCLS)
  42. koala.obj     : koala.cpp     $(INCLS)
  43. $(TARGET).res : $(TARGET).rc  $(INCLS) $(RCFILES)
  44.