-
Notifications
You must be signed in to change notification settings - Fork 3
Installation
In order to install featsel, after unzip the software package, you need to input the commands explained below. These commands must be called from inside of the directory where it was unzipped.
To compile the main program, just open a terminal and type:
> make
To compile the unit tests, type:
> make test
Warning: this procedure requires GNU Bison and GNU Flex.
After the modifications in the XML parser files, type:
> make bison
and then:
> make flex
Warning: this procedure requires Perl 5.
Just type:
> make featsel.cpp
and
> make featselTest.cpp
to update the featsel program main and unit test main files, respectively.
After a successful addition of new algorithms and/or cost functions, these two commands are executed automatically.
Warning: this procedure requires GNU groff.
Just type:
> make help
to update the help man page (file "docs/featsel.txt").
Warning: this procedure requires Perl 5, GNU Bison, Flex and groff.
Just type:
> make all
in order to compile at once everything listed in items (3.1)--(3.4).
To remove the objects and binaries produced by the compiler, type:
> make clean