#!/bin/sh

           OPTIONS="Ericsson_HM120dp IPMdatacom_Webpower Wisecom_Adsl_Usb Zyxel_Prestige_630 Eci_Adsl_Usb Digicom_Michelangelo_Adsl_0002_prog Digicom_Michelangelo_Adsl_8000_no_prog DSL-200_D-Link Disinstallazione Quit"
           select opt in $OPTIONS; do
               if [ "$opt" = "Quit" ]; then
                echo done
                exit
		elif [ "$opt" = "Disinstallazione" ]; then
                  make uninstall


	      elif [ "$opt" = "DSL-200_D-Link" ]; then
             exec DIR-Zyxel/inst.sh | make install

		 elif [ "$opt" = "Eci_Adsl_Usb" ]; then
             exec DIR-Zyxel/inst.sh | make install

	      elif [ "$opt" = "Digicom_Michelangelo_Adsl_0002_prog" ]; then
             exec DIR-Webpower/inst.sh | make install


	      elif [ "$opt" = "Digicom_Michelangelo_Adsl_8000_no_prog" ]; then
             exec DIR-Zyxel/inst.sh | make install

               elif [ "$opt" = "Zyxel_Prestige_630" ]; then
             exec DIR-Zyxel/inst.sh | make install

               elif [ "$opt" = "Wisecom_Adsl_Usb" ]; then
             exec DIR-Webpower/inst.sh | make install

               elif [ "$opt" = "IPMdatacom_Webpower" ]; then
             exec DIR-Webpower/inst.sh | make install

               elif [ "$opt" = "Ericsson_HM120dp" ]; then
             exec DIR-Ericsson/inst.sh | make install
               else
                clear
                echo bad option
               fi
           done

