MAKEFILE
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #+---------------------------------------------------------------------------
  2. #
  3. #  Microsoft Windows
  4. #  Copyright (C) Microsoft Corporation, 1994-1997.
  5. #
  6. #  File:       makefile
  7. #
  8. #  Contents:   builds the MFract fractal engines
  9. #
  10. #  History:     5-03-94   stevebl   Created
  11. #
  12. #----------------------------------------------------------------------------
  13. DIRLIST = mandel julia quad plasma rgen
  14. all: $(DIRLIST)
  15. $(DIRLIST):
  16.         cd $@
  17.         @nmake -a -i -nologo
  18.         cd ..