home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / Makefile < prev    next >
Makefile  |  1996-05-31  |  1KB  |  56 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. # Copyright (c) 1994 by Westmount Technology B.V., Delft, The Netherlands.
  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 Westmount Technology B.V.
  13. #
  14. #---------------------------------------------------------------------------
  15. #
  16. #    File        : @(#)Makefile    1.3
  17. #    Author        : peku
  18. #    Original date    : Tue Feb 22 10:43:21 MET 1994
  19. #    Description    : Makefile for librw4omt.a
  20. #
  21. #---------------------------------------------------------------------------
  22. #
  23.  
  24. .SUFFIXES:
  25. .SUFFIXES: .cxx .o
  26.  
  27. INCS =         -I../../include
  28. INSTALLDIR =    ../../lib
  29.  
  30. CXX =        CC 
  31. CXXFLAGS =    $(INCS)
  32. TARGET =    librw4omt.a
  33.  
  34. OBJ = \
  35.     WmtRWTHashRWCString.o \
  36.     WmtRWTHashVoidPtr.o
  37.  
  38. $(TARGET): $(OBJ)
  39.     ar ruv $@ $?
  40.     ranlib $@
  41.  
  42. install: $(TARGET)
  43.     if [ ! -d $(INSTALLDIR) ]; then mkdir $(INSTALLDIR); fi
  44.     cp $(TARGET) $(INSTALLDIR)
  45.     chmod 644 $(INSTALLDIR)/$(TARGET)
  46.     ranlib $(INSTALLDIR)/$(TARGET)
  47.  
  48. .cxx.o:
  49.     $(CXX) $(CXXFLAGS) -c $<
  50.  
  51. clean:
  52.     rm -f *.o *.c
  53.  
  54. clobber:
  55.     rm -f *.o *.c *.a
  56.