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

Windows编程

开发平台:

Visual C++

  1. #
  2. # MAKEFILE
  3. # Links Assistant Chapter 20
  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. TARGET  = lnkassis
  14. OUTFILE = lnkassis.dll
  15. DLL     = 1
  16. NODOC   = 1
  17. NOPRECOMP = 1
  18. INCLS   = $(TARGET).h dllassis.h
  19. OBJS1   = $(TARGET).obj dllassis.obj
  20. OBJS2   = ""
  21. OBJS3   = ""
  22. OBJS4   = ""
  23. OBJS5   = ""
  24. OBJS6   = ""
  25. OBJS    = $(OBJS1)
  26. RCFILES =
  27. !include "..\..\inole-a.mak"
  28. !include "..\..\inole-b.mak"
  29. ##### Dependencies #####
  30. $(TARGET).obj : $(TARGET).cpp $(INCLS)
  31. dllassis.obj  : dllassis.cpp  $(INCLS)
  32. $(TARGET).res : $(TARGET).rc  $(INCLS) $(RCFILES)