Changeset 179


Ignore:
Timestamp:
Apr 27, 2006, 9:58:58 AM (19 years ago)
Author:
garonne
Message:

add get_make_suffix function

Location:
CMT/HEAD/source
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/source/cmt_system.cxx

    r144 r179  
    22452245}
    22462246
     2247//----------------------------------------------------------
     2248cmt_string CmtSystem::get_makefile_suffix ()
     2249{
     2250#ifdef WIN32
     2251  return "nmake";
     2252#else
     2253  return "make";
     2254#endif
     2255}
     2256
  • CMT/HEAD/source/cmt_system.h

    r144 r179  
    134134  static bool get_home_directory (cmt_string& dir);
    135135
     136  static cmt_string get_makefile_suffix ();
     137
    136138};
    137139
Note: See TracChangeset for help on using the changeset viewer.