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 / chap09 / linkuser / makefile < prev    next >
Makefile  |  1995-05-03  |  862b  |  46 lines

  1. #
  2. # MAKEFILE
  3. # Link User Chapter 9
  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  = linkuser
  20. OUTFILE = linkuser.exe
  21. NODOC      = 1
  22. NOPRECOMP  = 1
  23. NOUILIB    = 1
  24. NOOCLIB    = 1
  25. NOCLASSLIB = 1
  26.  
  27. INCLS   = $(TARGET).h
  28.  
  29. OBJS1   = $(TARGET).obj
  30. OBJS2   = ""
  31. OBJS3   = ""
  32. OBJS4   = ""
  33. OBJS5   = ""
  34. OBJS6   = ""
  35. OBJS    = $(OBJS1)
  36.  
  37. RCFILES = $(TARGET).ico
  38.  
  39. !include "..\\..\\inole-a.mak"
  40. !include "..\\..\\inole-b.mak"
  41.  
  42. ##### Dependencies #####
  43.  
  44. $(TARGET).obj : $(TARGET).cpp $(INCLS)
  45. $(TARGET).res : $(TARGET).rc  $(INCLS) $(RCFILES)
  46.