install and uninstall package

I'm a newcomer for Solaris.
I tried to install Net::FTP package ( a tool perl ) on our sun server 5.9.
We used the below command:
/usr/bin/perl MakeFilePL
make
make install

How can I uninstall this package ?

this is no package! solaris packages are installed with pkgadd and removed with pkgrm. you installed from source... so you should check out if "make uninstall" works from the directory where you called "make install".

DN2