View Single Post

  #4 (permalink)  
Old 03-24-2006, 08:58 AM
sweta's Avatar
sweta sweta is offline
Contributors
User
 
Join Date: Feb 2005
Location: New Delhi
My distro: Suse, RHEL, Vista
Posts: 154
Rep Power: 4
sweta will become famous soon enough
Default

Quote:
# find / -name \*make -print
/usr/share/lib/make
/usr/lib/spell/hashmake
/usr/lib/svr4.make
/usr/lib/lu/lumake
/usr/openwin/bin/imake
/usr/ccs/bin/make
/usr/ccs/lib/svr4.make
/usr/sbin/lumake
/usr/xpg4/bin/make
I hope you have compiler installed; following command will give full path of C compiler:
which cc
which gcc

make command
You can setup PATH or you can type full path:
/usr/ccs/bin/make
OR
/usr/xpg4/bin/make

If you are using bash or sh shell then setup path using following command:
export PATH=$PATH:/usr/css/bin:/usr/xpg4/bin
Display new path:
echo $PATH
__________________
Friends - v-nessa - missyAdmin - LinuxChix
Reply With Quote