TARGET = TestBrokerReal

##########################################################
# Source Files                                           #
##########################################################

SHAREDPATH=..
#SHAREDPATH=../../shared
UTILSPATH=$(SHAREDPATH)/utils/c++

CPPFILES = src/AccessBrokerSkeleton.cpp      \
           src/AdrDataTransferStub.cpp       \
           src/DataStorageManager.cpp        \
           src/DataRetrievalManager.cpp      \
           src/OppStoreUtils.cpp             \
           src/Benchmark.cpp                 \
           src/OppStoreBroker.cpp            \
           src/StorageRequestIda.cpp         \
           src/FragmentUploadThread.cpp      \
           src/FragmentDownloadThread.cpp    \
           src/RetrievalRequestIda.cpp       \
           src/BrokerServerManager.cpp       \
           $(UTILSPATH)/CdrmRequestsStub.cpp \
           $(UTILSPATH)/StringTokenizer.cpp  \
           $(UTILSPATH)/Config.cpp           \
           $(UTILSPATH)/LuaUtils.cpp         \
           $(UTILSPATH)/FileUtils.cpp        \
           $(UTILSPATH)/OrbUtils.cpp         \
           $(UTILSPATH)/NameServiceStub.cpp  \
           src/ida/IDAAuxVectors.cpp         \
           src/ida/IDADecoderRabin.cpp       \
           src/ida/IDADecoderIdentity.cpp    \
           src/ida/IDAEncoderRabin.cpp       \
           src/ida/IDAEncoderIdentity.cpp    \
           src/ida/IDAEncodingThread.cpp     \
           src/ida/LocalParityEncoder.cpp    \
           src/ida/IDAImpl.cpp

#           src/CkpLogger.cpp \
#           src/repository/CkpRepositoryStore.cpp \
#           src/repository/CkpIdaRepositoryStore.cpp \
#           src/repository/CkpReplicatedRepositoryStore.cpp \
#           src/repository/CkpParityRepositoryStore.cpp \
#           src/repository/CkpRepositoryStub.cpp \

include Makefile.vars

##########################################################
# Compiler Flags                                         #
##########################################################

CXX = g++
INCDIR = -I$(SHAREDPATH) -I$(LUAINCDIR)
#ifeq ($(DEBUG), true)
DEBUGFLAGS =  -g3 -O0 -fno-inline
#endif
WARN_FLAGS = -Wall -pedantic -ansi
CPPFLAGS = -pthread -O2 -fPIC
LDFLAGS = -L$(LUALIBDIR) -Wl,-rpath,$(LUALIBDIR) -lm -llua -loilall -lluasocket  -lpthread -ldl -lssl

##########################################################
# Generating modified paths for objects and dependencies #
##########################################################

DIRLIST = $(dir $(CPPFILES))
FILELIST = $(notdir $(CPPFILES))
DIRDEPSLIST = $(addsuffix dependencies/, $(DIRLIST))
DIROBJSLIST = $(addsuffix objects/, $(DIRLIST))
OBJFILESLIST = $(join $(DIROBJSLIST), $(FILELIST))
DEPFILESLIST = $(join $(DIRDEPSLIST), $(FILELIST))
DIRDEPS = $(sort $(DIRDEPSLIST)) #Removes duplicate dirs
DIROBJS = $(sort $(DIROBJSLIST)) #Removes duplicate dirs

OBJFILES = $(OBJFILESLIST:.cpp=.o)
CPPDEPENDS = $(DEPFILESLIST:.cpp=.d)
transfname = $(patsubst %.o, %.d, $(subst objects/,dependencies/,$(1) ) )

all: first $(TARGET) libbroker.so

-include $(CPPDEPENDS)

first:
	@mkdir -p $(DIRDEPS) $(DIROBJS)

src/objects/%.o: src/%.cpp
	$(CXX) $(INCDIR) $(WARN_FLAGS) -c $(CPPFLAGS) $(DEBUGFLAGS)  -o $@ $<
	$(CXX) $(INCDIR) $(WARN_FLAGS) $(CPPFLAGS) -MM  $< > $(call transfname, $@)
	@mv -f $(call transfname, $@) $(call transfname, $@).tmp
	@sed -e 's|.*:|$@:|' < $(call transfname, $@).tmp > $(call transfname, $@)
	@sed -e 's/.*://' -e 's/\\$$//' < $(call transfname, $@).tmp | fmt -1 | sed -e 's/^ *//' -e 's/$$/:/' >> $(call transfname, $@)
	@rm -f $(call transfname, $@).tmp

src/ida/objects/%.o: src/ida/%.cpp
	$(CXX) $(INCDIR) $(WARN_FLAGS) -c $(CPPFLAGS) $(DEBUGFLAGS)  -o $@ $<
	$(CXX) $(INCDIR) $(WARN_FLAGS) $(CPPFLAGS) -MM  $< > $(call transfname, $@)
	@mv -f $(call transfname, $@) $(call transfname, $@).tmp
	@sed -e 's|.*:|$@:|' < $(call transfname, $@).tmp > $(call transfname, $@)
	@sed -e 's/.*://' -e 's/\\$$//' < $(call transfname, $@).tmp | fmt -1 | sed -e 's/^ *//' -e 's/$$/:/' >> $(call transfname, $@)
	@rm -f $(call transfname, $@).tmp

$(UTILSPATH)/objects/%.o: $(UTILSPATH)/%.cpp
	$(CXX) $(INCDIR) $(WARN_FLAGS) -c $(CPPFLAGS) $(DEBUGFLAGS)  -o $@ $<
	$(CXX) $(INCDIR) $(WARN_FLAGS) $(CPPFLAGS) -MM  $< > $(call transfname, $@)
	@mv -f $(call transfname, $@) $(call transfname, $@).tmp
	@sed -e 's|.*:|$@:|' < $(call transfname, $@).tmp > $(call transfname, $@)
	@sed -e 's/.*://' -e 's/\\$$//' < $(call transfname, $@).tmp | fmt -1 | sed -e 's/^ *//' -e 's/$$/:/' >> $(call transfname, $@)
	@rm -f $(call transfname, $@).tmp

libbroker.so: $(OBJFILES)
	$(CXX) -shared -fPIC -o lib/$@ $+ $(LDFLAGS)

$(TARGET): src/$(TARGET).cpp $(OBJFILES) 
	$(CXX) $(INCDIR) $(WARN_FLAGS) $(CPPFLAGS) $(DEBUGFLAGS) -o $@ $+ $(LDFLAGS)
ifeq ($(DEBUG), false)
	strip -s $(TARGET)
endif

clean:
	rm -rf $(DIRDEPS) $(DIROBJS) $(TARGET) lib/libbroker.so
