From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brendan J Simon To: egcs@cygnus.com Cc: insight@sourceware.cygnus.com Subject: Re: insight Date: Thu, 03 Feb 2000 18:26:00 -0000 Message-id: <389A2B5E.8A4083A0@ctam.com.au> References: X-SW-Source: 2000-q1/msg00041.html > > How do I get it off my machine? There's no uninstall target in the > > makefile, and the install target installs hundreds of files... not exactly > > easy to track them all down. The installation directory is $exec_prefix/bin, which is usually the same as $prefix/bin. I generally configure stuff so that it gets put in its own directory. eg. configure --prefix=/usr/local/insight. That way I can blow away the directory without affecting other program installations. "make install" will then install everything in subdirectories of /usr/local/insight. eg /usr/local/insight/bin. Remeber that the default prefix is /usr/local which means insight will share the bin directory (/usr/local/bin) with many other programs if you don't specify --prefix on the configure line. Brendan Simon.