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 / selfreg / makefile next >
Makefile  |  1995-05-03  |  808b  |  43 lines

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