PROJECTNAME=minicc

CXX=clang++-9
#CXX=g++-8

CXXFLAGS=-O0 -g -D_DEBUG
# -fprofile-instr-generate -fcoverage-mapping
# gcc:--coverage
#CXXFLAGS=-O2 -DNDEBUG

CXXFLAGS+= -Wall -std=c++17 -I.

ifeq ($(CXX),clang++-9)
# currently broken:
# ld.lld-8: error: undefined symbol: boost::re_detail_106700::cpp_regex_traits_implementation<char>::transform(char const*, char const*) const
#CXXFLAGS+= -stdlib=libc++
endif

CXXTESTFLAGS=-Igoogletest/include -Igooglemock/include/ -Igoogletest -Igooglemock

LIBS=\
-lboost_context \
-lboost_coroutine \
-lboost_program_options \
-lboost_system \
-lboost_thread \
-lboost_filesystem \
-lboost_regex \
-lpthread

ifeq ($(CXX),clang++-9)
LIBS+= \
-fuse-ld=lld-8 \
-lstdc++ \
-lstdc++fs
#-lc++ \
#-lc++abi \
#-lc++fs
else
LIBS+= \
-lstdc++ \
-lstdc++fs
endif

SRC=\
    bnf.cpp \
    cpp.cpp \
    test-cpp.cpp \
    cppbnf.cpp \
    test-cppbnf.cpp \
    grammer.cpp \
    test-grammer.cpp \
    lexer.cpp \
    test-lexer.cpp \
    minicc.cpp \
    test-minicc.cpp \
    elf.cpp \
    test-elf.cpp \
    file.cpp \
    googletest/src/gtest-all.cpp \
    googlemock/src/gmock-all.cpp

all: test-$(PROJECTNAME)
	./test-$(PROJECTNAME)

# testsuite ----------------------------------------------
test-$(PROJECTNAME): $(SRC:.cpp=.o)
	$(CXX) $(CXXFLAGS) $^ $(LIBS) -o $@

dep: $(SRC:.cpp=.d)

%.d: %.cpp
	$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -MM -MP -MF $@ -c $<

%.o: %.cpp %.d
	$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@

googletest/src/%.o: googletest/src/%.cc
	$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@

# dependencies

ADD_DEP=Makefile

# misc ---------------------------------------------------
clean:
	-rm -f test-$(PROJECTNAME)
	-find . -name '*.o' -o -name '*.d' -o -name '*.gcno' -o -name '*.gcda' | xargs rm -f

zip: clean
	-rm -f ../$(PROJECTNAME).zip
	zip -r ../$(PROJECTNAME).zip *
	ls -l ../$(PROJECTNAME).zip

.PHONY: clean all zip

-include $(wildcard $(SRC:.cpp=.d))