home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1999 October / VPR9910A.BIN / OLS / unrar32005 / unrar32005.lzh / src / Makefile < prev    next >
Makefile  |  1998-03-16  |  762b  |  30 lines

  1. #
  2. #   Copyright (c) 1998 T. Kamei (kamei@jsdlab.co.jp)
  3. #
  4. #   Permission to use, copy, modify, and distribute this software
  5. # and its documentation for any purpose is hereby granted provided
  6. # that the above copyright notice and this permission notice appear
  7. # in all copies of the software and related documentation.
  8. #
  9. #                          NO WARRANTY
  10. #
  11. #   THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY WARRANTIES;
  12. # WITHOUT EVEN THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS
  13. # FOR A PARTICULAR PURPOSE.
  14. #
  15.  
  16. all: release
  17.  
  18. MAKE=nmake -nologo -$(MAKEFLAGS)
  19.  
  20. Debug Release: .PHONY
  21.     @$(MAKE) -f unrar32.mak CFG="unrar32 - Win32 $@"
  22.  
  23. clean: .PHONY
  24.     rm -f *.obj *.dll *.lib *.exp
  25.  
  26. realclean: clean
  27.     rm -f *~ #*
  28.  
  29. .PHONY:
  30.