cmUnixMakefile.h 757 B

123456789101112131415161718192021222324252627282930313233343536
  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. /**
  21. * Write the makefile to the named file
  22. */
  23. void OutputMakefile(const char* file);
  24. protected:
  25. void OutputDepends(std::ostream&);
  26. };
  27. #endif