indexing description: "Objects that ..." author: "Mark Howard, AxaRosenberg" date: "$Date$" revision: "$Revision$" class FAST_COMPILE create make feature make (a_arguments: ARRAY[STRING]) is do if a_arguments.count > 2 then create top_directory.make(a_arguments.item(1), a_arguments.item (2), True) top_directory.concat else print_usage end end top_directory : EIFFEL_F_CODE_DIRECTORY feature {NONE} -- Implementation print_usage is -- Print the usage of `quick_finalize'. do io.put_string ("Usage: quick_finalize path object_extension%N") io.put_string ("%Tpath: path to your F_code directory generated by EiffelStudio%N") io.put_string ("%Tobject_extension: either obj or o depending on the plaform%N") end end