Fix makefile generator script when multiple types

The script takes the arguments:
  base-directory type1 type2..typeN

Where the types are the directory names
to find procedures in.

However, when multiple types are passed in
during the build, they actually show up as
1 parameter:
  base-directory "type1 type2..typeN"

This change looks for all of the types in
the second parameter.

Change-Id: Ib45446346bd8814ca58d72057c18b0faf16f9152
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
1 file changed
tree: f4174cd78c0cb90e74cbdde75925b469ebbf920e
  1. procedures/
  2. test/
  3. .gitignore
  4. bootstrap.sh
  5. cfam_access.cpp
  6. cfam_access.hpp
  7. configure.ac
  8. ext_interface.cpp
  9. ext_interface.hpp
  10. filedescriptor.cpp
  11. filedescriptor.hpp
  12. gen_makefile.sh
  13. LICENSE
  14. Makefile.am
  15. Makefile.generated.in
  16. p9_cfam.hpp
  17. proc_control.cpp
  18. README.md
  19. registration.cpp
  20. registration.hpp
  21. targeting.cpp
  22. targeting.hpp
README.md

Contains procedures that interact with the OpenPower nest chipset.

To Build

To build this package, do the following steps:

    1. ./bootstrap.sh
    2. ./configure ${CONFIGURE_FLAGS}
    3. make

To full clean the repository again run `./bootstrap.sh clean`.