# File lib/mkmf-gnome2.rb, line 207
def run_make_in_sub_dirs_command(command, sub_dirs)
  if /mswin32/ =~ RUBY_PLATFORM
    sub_dirs.collect do |dir|
      "@cd \#{dir}\n@nmake -nologo DESTDIR=$(DESTDIR) \#{command}\n@cd ..\n".chmop
    end.join("\n")
  else
    sub_dirs.collect do |dir|
      "\t@cd #{dir}; $(MAKE) #{command}"
    end.join("\n")
  end
end