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 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 = \
os.cpp\ os.cpp\
rasctl_command.cpp rasctl_command.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)