cmUnixMakefile.h 744 B

12345678910111213141516171819202122232425262728293031323334
  1. /*=========================================================================
  2. Program: Insight Segmentation & Registration Toolkit
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2000 National Library of Medicine
  8. All rights reserved.
  9. See COPYRIGHT.txt for copyright details.
  10. =========================================================================*/
  11. /**
  12. * itkUnixMakefile is used generate unix makefiles.
  13. */
  14. #ifndef cmUnixMakefile_h
  15. #define cmUnixMakefile_h
  16. #include "cmMakefile.h"
  17. class cmUnixMakefile : public cmMakefile
  18. {
  19. public:
  20. // Write the makefile to the named file
  21. void OutputMakefile(const char* file);
  22. protected:
  23. void OutputDepends(std::ostream&);
  24. };
  25. #endif