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

Windows编程

开发平台:

Visual C++

  1. #
  2. # MAKEFILE
  3. # IDescription Interface DLL 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. #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  = idescrip
  17. OUTFILE = idescrip.dll
  18. DLL     = 1
  19. NODOC      = 1
  20. NOUILIB    = 1
  21. NOOCLIB    = 1
  22. NOPRECOMP  = 1
  23. NOCLASSLIB = 1
  24. INCLS   =
  25. OBJS1   = idescrip_i.obj idescrip_p.obj
  26. OBJS2   = dlldata.obj libmain.obj
  27. OBJS3   = ""
  28. OBJS4   = ""
  29. OBJS5   = ""
  30. OBJS6   = ""
  31. OBJS    = $(OBJS1) $(OBJS2)
  32. RCFILES = idescrip.rc
  33. !include "..\..\inole-a.mak"
  34. LIBS    = rpcrt4.lib
  35. !include "..\..\inole-b.mak"
  36. #Run MIDL.EXE to produce the source code
  37. idescrip.h idescrip_p.c idescrip_i.c dlldata.c: idescrip.idl
  38.     midl /ms_ext /app_config /c_ext idescrip.idl
  39. ##### Dependencies #####
  40. idescrip_i.obj : idescrip_i.c
  41. idescrip_p.obj : idescrip_p.c idescrip.h
  42. dlldata.obj    : dlldata.c
  43. libmain.obj    : libmain.cpp
  44. $(TARGET).res  : $(TARGET).rc $(RCFILES)