mirror of
https://github.com/thewesker/RASCSI.git
synced 2025-12-21 04:41:12 -05:00
Renamed disks directory to devices, since not all of the devices are disks
This commit is contained in:
@@ -15,8 +15,8 @@ else
|
|||||||
CXXFLAGS += -O3 -Wall -Werror
|
CXXFLAGS += -O3 -Wall -Werror
|
||||||
BUILD_TYPE = Release
|
BUILD_TYPE = Release
|
||||||
endif
|
endif
|
||||||
CFLAGS += -Idisks -Icontrollers -I.
|
CFLAGS += -Idevices -Icontrollers -I.
|
||||||
CXXFLAGS += -Idisks -Icontrollers -I. -std=c++14
|
CXXFLAGS += -Idevices -Icontrollers -I. -std=c++14
|
||||||
|
|
||||||
# If its not specified, build for STANDARD configuration
|
# If its not specified, build for STANDARD configuration
|
||||||
CONNECT_TYPE ?= STANDARD
|
CONNECT_TYPE ?= STANDARD
|
||||||
@@ -56,7 +56,7 @@ SRC_RASCSI = \
|
|||||||
# rascsi_mgr.cpp
|
# rascsi_mgr.cpp
|
||||||
# command_thread.cpp
|
# command_thread.cpp
|
||||||
SRC_RASCSI += $(notdir $(shell find ./controllers -name '*.cpp'))
|
SRC_RASCSI += $(notdir $(shell find ./controllers -name '*.cpp'))
|
||||||
SRC_RASCSI += $(notdir $(shell find ./disks -name '*.cpp'))
|
SRC_RASCSI += $(notdir $(shell find ./devices -name '*.cpp'))
|
||||||
|
|
||||||
SRC_RASCTL = \
|
SRC_RASCTL = \
|
||||||
rasctl.cpp
|
rasctl.cpp
|
||||||
@@ -76,8 +76,8 @@ SRC_SASIDUMP = \
|
|||||||
filepath.cpp \
|
filepath.cpp \
|
||||||
fileio.cpp
|
fileio.cpp
|
||||||
|
|
||||||
vpath %.h ./ ./controllers ./disks
|
vpath %.h ./ ./controllers ./devices
|
||||||
vpath %.cpp ./ ./controllers ./disks
|
vpath %.cpp ./ ./controllers ./devices
|
||||||
vpath %.o ./$(OBJDIR)
|
vpath %.o ./$(OBJDIR)
|
||||||
vpath ./$(BINDIR)
|
vpath ./$(BINDIR)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user