MAKEFILE
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  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. #Add '#' to the next line for 'noisy' operation
  12. !CMDSWITCHES +s
  13. !ifdef WIN16
  14. !ERROR This sample only compiles and runs under Win32
  15. !endif
  16. TARGET  = ekoala4
  17. OUTFILE = ekoala4.exe
  18. NODOC      = 1
  19. NOUILIB    = 1
  20. NOOCLIB    = 1
  21. NOPRECOMP  = 1
  22. NOCLASSLIB = 1
  23. INCLS   = $(TARGET).h koala.h
  24. OBJS1   = $(TARGET).obj koala.obj
  25. OBJS2   = ""
  26. OBJS3   = ""
  27. OBJS4   = ""
  28. OBJS5   = ""
  29. OBJS6   = ""
  30. OBJS    = $(OBJS1)
  31. RCFILES = koala.ico
  32. !include "..\..\inole-a.mak"
  33. !include "..\..\inole-b.mak"
  34. ##### Dependencies #####
  35. $(TARGET).obj : $(TARGET).cpp $(INCLS)
  36. koala.obj     : koala.cpp     $(INCLS)
  37. $(TARGET).res : $(TARGET).rc  $(INCLS) $(RCFILES)