mirror of
https://github.com/akuker/RASCSI.git
synced 2024-12-21 08:29:59 +00:00
Move top-level .cpp files into their respective folders (#1249)
* Update Makefile, move top-level .cpp files * Move top-level .cpp files into their respective folders
This commit is contained in:
parent
41bdcd4aed
commit
aa927cb504
33
cpp/Makefile
33
cpp/Makefile
@ -82,39 +82,36 @@ SRC_SHARED = \
|
||||
shared/piscsi_util.cpp \
|
||||
shared/network_util.cpp
|
||||
|
||||
SRC_PISCSI_CORE = $(shell find ./piscsi -name '*.cpp')
|
||||
SRC_PISCSI_CORE = $(shell find ./piscsi -name '*.cpp' | grep -v piscsi.cpp)
|
||||
SRC_PISCSI_CORE += $(shell find ./controllers -name '*.cpp')
|
||||
SRC_PISCSI_CORE += $(shell find ./devices -name '*.cpp')
|
||||
SRC_PISCSI_CORE += $(shell find ./hal -name '*.cpp')
|
||||
|
||||
SRC_PISCSI = piscsi.cpp
|
||||
SRC_PISCSI = piscsi/piscsi.cpp
|
||||
|
||||
SRC_SCSIMON = scsimon.cpp
|
||||
SRC_SCSIMON += $(shell find ./monitor -name '*.cpp')
|
||||
SRC_SCSIMON = scsimon/scsimon.cpp
|
||||
SRC_SCSIMON += $(shell find ./scsimon -name '*.cpp' | grep -v scsimon.cpp)
|
||||
SRC_SCSIMON += $(shell find ./hal -name '*.cpp')
|
||||
|
||||
SRC_SCSICTL_CORE = $(shell find ./scsictl -name '*.cpp')
|
||||
SRC_SCSICTL_CORE = $(shell find ./scsictl -name '*.cpp' | grep -v scsictl.cpp)
|
||||
|
||||
SRC_SCSICTL = scsictl.cpp
|
||||
SRC_SCSICTL = scsictl/scsictl.cpp
|
||||
|
||||
SRC_SCSIDUMP = scsidump.cpp
|
||||
SRC_SCSIDUMP += $(shell find ./scsidump -name '*.cpp')
|
||||
SRC_SCSIDUMP = scsidump/scsidump.cpp
|
||||
SRC_SCSIDUMP += $(shell find ./scsidump -name '*.cpp' | grep -v scsidump.cpp)
|
||||
SRC_SCSIDUMP += $(shell find ./hal -name '*.cpp')
|
||||
|
||||
SRC_PISCSI_TEST = $(shell find ./test -name '*.cpp')
|
||||
SRC_PISCSI_TEST += $(shell find ./scsidump -name '*.cpp')
|
||||
SRC_PISCSI_TEST += $(shell find ./monitor -name '*.cpp')
|
||||
SRC_PISCSI_TEST += $(shell find ./scsidump -name '*.cpp' | grep -v scsidump.cpp)
|
||||
|
||||
SRC_SCSILOOP = scsiloop.cpp
|
||||
SRC_SCSILOOP += $(shell find ./scsiloop -name '*.cpp')
|
||||
SRC_SCSILOOP = scsiloop/scsiloop.cpp
|
||||
SRC_SCSILOOP += $(shell find ./scsiloop -name '*.cpp' | grep -v scsiloop.cpp)
|
||||
SRC_SCSILOOP += $(shell find ./hal -name '*.cpp')
|
||||
|
||||
vpath %.h ./ ./shared ./controllers ./devices ./monitor ./hal \
|
||||
./hal/boards ./hal/pi_defs ./piscsi ./scsictl ./scsidump \
|
||||
./scsiloop
|
||||
vpath %.cpp ./ ./shared ./controllers ./devices ./monitor ./hal \
|
||||
./hal/boards ./hal/pi_defs ./piscsi ./scsictl ./scsidump \
|
||||
./scsiloop ./test
|
||||
vpath %.h ./shared ./controllers ./devices ./scsimon ./hal \
|
||||
./hal/pi_defs ./piscsi ./scsictl ./scsidump ./scsiloop
|
||||
vpath %.cpp ./shared ./controllers ./devices ./scsimon ./hal \
|
||||
./hal/pi_defs ./piscsi ./scsictl ./scsidump ./scsiloop ./test
|
||||
vpath %.o ./$(OBJDIR)
|
||||
vpath ./$(BINDIR)
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#include "monitor/sm_core.h"
|
||||
#include "scsimon/sm_core.h"
|
||||
|
||||
using namespace std;
|
||||
|
@ -9,10 +9,10 @@
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
#include "monitor/sm_core.h"
|
||||
#include "scsimon/sm_core.h"
|
||||
#include "hal/gpiobus.h"
|
||||
#include "hal/gpiobus_factory.h"
|
||||
#include "monitor/sm_reports.h"
|
||||
#include "scsimon/sm_reports.h"
|
||||
#include "hal/log.h"
|
||||
#include "shared/piscsi_version.h"
|
||||
#include "shared/piscsi_util.h"
|
Loading…
Reference in New Issue
Block a user