I am using ExtUtils::MakeMaker; to generate makefile. It runs gcc on my cpp files but copies my object files to current directory. How do i specify the destination folder where my .o files will be stored. I had mentioned the .o files in the OBJECT field.
OBJECT" => "des_dir/abc.o"
I get this error when i run the makefile
gcc: des_dir/abc.o: No such file or directory
Thanks