Building 'world' in FreeBSD

Hi guys I need a jail in FreeBSD and I'm following this documentation : Jails and I'm stuck cause It won't make, I've already download the source via sysinstall and I surfed through the makefile and I didn't found no such rule as 'buildworld', 'installworld' or 'distribuition'.

Can anyone help me?
Thanks in advance.

I am assuming t hat you are logged in as root, since creating jails requires higher level privileges. You may want to use zabbix to control your jails.

Try some or all of the following commands to create a jail called TEST:

mkdir /usr/jail
mkdir /usr/jail/TEST
cd /usr/src
make world DESTDIR=/usr/jail/TEST
make distribution DESTDIR=/usr/jail/TEST
echo "jail_enable="\""YES"\" >> /etc/rc.conf
echo "jail_list="\""TEST PROD"\" >> /etc/rc.conf
echo "jail_TEST_rootdir="\""/usr/jail/TEST"\"  >> /etc/rc.conf
echo "jail_TEST_ip="\""192.168.2.1"\"  >> /etc/rc.conf
echo "jail_TEST_hostname="\""jail.TEST"\"  >> /etc/rc.conf
echo "jail_sysvipc_allow="\""YES"\" >> /etc/rc.conf
echo "security.jail.allow_raw_sockets=1" >> /etc/sysctl.conf
cp /etc/resolv.conf /usr/jail/TEST/etc
mkdir /usr/jail/TEST/usr/ports
echo 'mount_nullfs /usr/ports  /usr/jail/TEST/usr/ports' >> /etc/rc.local