home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / Makefile.cc < prev    next >
Makefile  |  1997-06-27  |  2KB  |  67 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. # Copyright (c) 1992-1997 by Cayenne Software, Inc.
  4. #
  5. # This software is furnished under a license and may be used only in
  6. # accordance with the terms of such license and with the inclusion of
  7. # the above copyright notice. This software or any other copies thereof
  8. # may not be provided or otherwise made available to any other person.
  9. # No title to and ownership of the software is hereby transferred.
  10. #
  11. # The information in this software is subject to change without notice
  12. # and should not be construed as a commitment by Cayenne Software Inc.
  13. #
  14. #---------------------------------------------------------------------------
  15. #
  16. #       File            : @(#)Makefile.cc    /main/titanic/1 27 Jun 1997
  17. #
  18. #---------------------------------------------------------------------------
  19.  
  20. LIBEXT =    a
  21. OBJEXT =    o
  22.  
  23. .SUFFIXES:
  24. .SUFFIXES: .cxx .$(OBJEXT)
  25.  
  26. INCS =        -I../include
  27. INSTALLDIR =    ../lib
  28.  
  29. AR =        ar ruv
  30. CP =        cp
  31. RM =        rm -f
  32. RANLIB =    @true
  33.  
  34. CXX =        CC
  35. CXXFLAGS =    $(INCS)
  36. TARGET =    libwmt4omt.$(LIBEXT)
  37.  
  38. OBJ = \
  39.     CList.$(OBJEXT) \
  40.     FlexArray.$(OBJEXT) \
  41.     HashTbl.$(OBJEXT) \
  42.     IntHash.$(OBJEXT) \
  43.     PtrDict.$(OBJEXT) \
  44.     PtrSet.$(OBJEXT) \
  45.     Range.$(OBJEXT) \
  46.     String.$(OBJEXT) \
  47.     StringHash.$(OBJEXT)
  48.  
  49. $(TARGET): $(OBJ)
  50.     $(AR) $@ $?
  51.     $(RANLIB) $@
  52.  
  53. install: $(TARGET)
  54.     if [ ! -d $(INSTALLDIR) ]; then mkdir $(INSTALLDIR); fi
  55.     $(CP) $(TARGET) $(INSTALLDIR)
  56.     chmod 644 $(INSTALLDIR)/$(TARGET)
  57.     $(RANLIB) $(INSTALLDIR)/$(TARGET)
  58.  
  59. .cxx.$(OBJEXT):
  60.     $(CXX) $(CXXFLAGS) -c $<
  61.  
  62. clean:
  63.     $(RM) *.$(OBJEXT) *.c
  64.  
  65. clobber:
  66.     $(RM) *.$(OBJEXT) *.c *.$(LIBEXT)
  67.