home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / som / somd / cpp / animal / vac.mak < prev   
Encoding:
Makefile  |  1996-02-16  |  2.9 KB  |  92 lines

  1. #
  2. #   COMPONENT_NAME: somx
  3. #
  4. #   ORIGINS: 27
  5. #
  6. #
  7. #   10H9767, 10H9769  (C) COPYRIGHT International Business Machines Corp. 1992,1994
  8. #   All Rights Reserved
  9. #   Licensed Materials - Property of IBM
  10. #   US Government Users Restricted Rights - Use, duplication or
  11. #   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  12.  
  13.  
  14.  
  15.  
  16. # DISCLAIMER OF WARRANTIES.
  17. # The following [enclosed] code is sample code created by IBM
  18. # Corporation. This sample code is not part of any standard or IBM
  19. # product and is provided to you solely for the purpose of assisting
  20. # you in the development of your applications.  The code is provided
  21. # "AS IS". IBM MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT
  22. # NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  23. # FOR A PARTICULAR PURPOSE, REGARDING THE FUNCTION OR PERFORMANCE OF
  24. # THIS CODE.  IBM shall not be liable for any damages arising out of
  25. # your use of the sample code, even if they have been advised of the
  26. # possibility of such damages.
  27. #
  28. # DISTRIBUTION.
  29. # This sample code can be freely distributed, copied, altered, and
  30. # incorporated into other software, provided that it bears the above
  31. # Copyright notice and DISCLAIMER intact.
  32. !include  ..\..\..\vacmake.hd
  33.  
  34. INCLS = danimal.xh ddog.xh dldog.xh dbdog.xh dloc.xh
  35. IDLFILES = danimal.idl dbdog.idl ddog.idl dldog.idl dloc.idl
  36.  
  37. PRIVCPPFLAGSDLL=/Ms
  38. PRIVCPPFLAGS=/Ms
  39.  
  40. # danimalv.def
  41. DEFSPEC=/DEF:$(*:.def=)v.def
  42.  
  43. DLLOBJS = danimal.od dloc.od ddog.od dldog.od dbdog.od daniinit.od nlsutild.od
  44. PRIVLDFLAGSDLL=$(ENTRYFLAG) $(SOMINITOBJ)
  45.  
  46. PRIVLDFLAGS=/SUBSYSTEM:WINDOWS
  47.  
  48.  
  49. all: $(SOMXH_DEPEND) danimal.dll anitest.exe testsvr.exe som_ir somdimpl
  50.  
  51. danimal.dll: danimalv.def $(DLLOBJS) danimal.lib
  52. danimal.lib: danimalv.def $(DLLOBJS)
  53.  
  54. danimal.od: danimal.xih danimal.xh dloc.xh danimal.cpp
  55. ddog.od: ddog.xih ddog.xh ddog.cpp
  56. dldog.od: dldog.xih dldog.xh dldog.cpp
  57. dbdog.od: dbdog.xih dbdog.xh dbdog.cpp
  58. dloc.od: dloc.xih dloc.xh dloc.cpp
  59. daniinit.od: daniinit.cpp
  60.  
  61. testsvr.exe: testsvr.obj nlsutil.obj testsvr.res
  62. testsvr.res: testsvr.rc testsvr.h som.ico
  63. testsvr.obj: $(INCLS) testsvr.cpp
  64.  
  65. anitest.exe: anitest.obj nlsutil.obj anitest.res danimal.lib
  66.     $(LD) $(LDFLAGS) /OUT:$@ anitest.obj nlsutil.obj anitest.res danimal.lib somtk.lib user32.lib gdi32.lib
  67.  
  68. anitest.obj: $(INCLS) anitest.cpp
  69. anitest.res: anitest.rc
  70.  
  71. clnimpl:
  72.     -regimpl -D -i aniServer2
  73.     -del somdimpl
  74.  
  75. ### -- Put the IDL descriptions into the Interface Repository.
  76. som_ir: $(IDLFILES)
  77.     -$(SC) -I. -sir -u -mnolock $(INCS) *.idl
  78.     -@echo "x" > som_ir
  79.  
  80. ### -- Build the DSOM Implementation Repository.
  81. somdimpl:
  82.     -regimpl -A -i aniServer2 -p testsvr.exe
  83.     -regimpl -a -i aniServer2 -c dAnimal -c dDog -c dBigDog -c dLittleDog -c dLocation
  84.     -regimpl -L -i aniServer2
  85.     @echo x > somdimpl
  86.  
  87. clean: clnimpl
  88.     del som_ir
  89.     del som.ir
  90.  
  91. !include ..\..\..\vacmake.tl
  92.