home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / som / vacmake.tl < prev   
Encoding:
Text File  |  1996-02-16  |  961 b   |  44 lines

  1. $(SOMSTARS_DEPEND):
  2.     @echo Generating NONCORBA C bindings. This might take a while. 
  3.     somstars
  4.  
  5.  
  6. $(SOMCORBA_DEPEND):
  7.     @echo Generating CORBA C bindings. This might take a while. 
  8.     somcorba
  9.  
  10. $(SOMXH_DEPEND):
  11.     @echo Generating C++ bindings. This might take a while.
  12.         if not exist $(SMBINDINGS)\somxh.bld if not exist $(SOMBASE)\include\somxh.bld somxh
  13.  
  14. # These dependencies are always present - they assume
  15. # we build the dll first. (so the obj for .exe's can
  16. # delete the DLL version before it is built)
  17. nlsutil.obj: nlsutil.h nlsutil.c
  18.  
  19. nlsutild.od: nlsutil.h nlsutil.c
  20.     $(CC) $(CFLAGSDLL) $(PRIVCFLAGSDLL) /Fo$*.obj $(INCLPATH) nlsutil.c
  21.     echo "x">$@
  22.  
  23. som.ico:
  24.     copy $(SOMBASE)\bin\som.ico
  25.  
  26. cleanrule:
  27.     -del *.exp
  28.     -del *.obj 
  29.     -del *.lib 
  30.     -del *.od 
  31.     -del *.dll 
  32.     -del *.map
  33.     -del *.out
  34.     -del *.pdb
  35.     -del *.exe 
  36.     -del *.ih 
  37.     -del *.xh 
  38.     -del *.xih 
  39.     -del *.lst 
  40.     -del *.res 
  41.     -del som.ico 
  42.  
  43. clean: cleanrule
  44.