Move procedures into separate files.
Procedures will now be in procedures/<chip>/.
The next commit will have the procedures register
themselves so they won't be in a hardcoded list.
Change-Id: I0ff90afe2b51aaff25b5c25bf87070c820323e30
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
diff --git a/Makefile.am b/Makefile.am
index 73ea204..57c0e2c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -6,9 +6,10 @@
openpower_proc_control_SOURCES = \
proc_control.cpp \
cfam_access.cpp \
- p9_procedures.cpp \
filedescriptor.cpp \
- targeting.cpp
+ targeting.cpp \
+ procedures/p9/start_host.cpp \
+ procedures/p9/vcs_workaround.cpp
openpower_proc_control_LDFLAGS = $(PHOSPHOR_LOGGING_LIBS) -lstdc++fs
openpower_proc_control_CXXFLAGS = $(PHOSPHOR_LOGGING_CFLAGS)