Merge remote-tracking branch 'origin/large_file_breakup_part_1' into large_file_breakup

This commit is contained in:
akuker
2020-08-16 13:09:27 -05:00
21 changed files with 5 additions and 5 deletions

View File

@@ -15,8 +15,8 @@ else
CXXFLAGS += -O3 -Wall -Werror
BUILD_TYPE = Release
endif
CFLAGS += -Idisks -Icontrollers -I.
CXXFLAGS += -Idisks -Icontrollers -I. -std=c++14
CFLAGS += -Idevices -Icontrollers -I.
CXXFLAGS += -Idevices -Icontrollers -I. -std=c++14
# If its not specified, build for STANDARD configuration
CONNECT_TYPE ?= STANDARD
@@ -56,7 +56,7 @@ SRC_RASCSI = \
os.cpp\
rasctl_command.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 = \
rasctl.cpp\
@@ -76,8 +76,8 @@ SRC_SASIDUMP = \
filepath.cpp \
fileio.cpp
vpath %.h ./ ./controllers ./disks
vpath %.cpp ./ ./controllers ./disks
vpath %.h ./ ./controllers ./devices
vpath %.cpp ./ ./controllers ./devices
vpath %.o ./$(OBJDIR)
vpath ./$(BINDIR)