# Ruby Treasures 0.2
# Copyright (C) 2002 Paul Brannan <paul@atdesk.com>
# 
# You may distribute this software under the same terms as Ruby (see the file
# COPYING that was distributed with this library).
# 
require 'mkmf'
require 'ftools'
require '../../extconf_helpers.rb'

PROJECTS = [
  'call_stack',
  'const_method',
  'kernelless_object',
  'safe_send',
]

MAKEFILES = []
PROJECTS.each do |project|
  $objs = nil
  create_makefile(project)
  new_makefile = "Makefile.#{project}"
  File::mv 'Makefile', new_makefile
  MAKEFILES << new_makefile
end

generate_makefile()

