changed: PatternParser now uses Log from pikotools

git-svn-id: svn://ttmath.org/publicrep/ezc/trunk@1153 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2018-11-23 18:33:17 +00:00
parent bf62d44346
commit 1e85922d4e
4 changed files with 43 additions and 24 deletions

View File

@@ -16,21 +16,14 @@ all: $(libname)
$(libname): $(o)
ar rcs $(libname) $(o)
additionalinclude =
ifdef EZC_USE_WINIX_LOGGER
additionalinclude = $(EZC_ADDITIONAL_INCLUDE)
endif
%.o: %.cpp
$(CXX) -c $(CXXFLAGS) -I$(GLOBAL_WORKING_DIR)/pikotools $(additionalinclude) $<
$(CXX) -c $(CXXFLAGS) -I$(GLOBAL_WORKING_DIR)/pikotools $<
depend:
# we do not use $(additionalinclude) here because the dependencies would be added to the repository
# and messes other projects
# !! IMPROVE ME
# as Ezc is a different project we rather shoudn't use '-I$(global_relative_working_dir)/pikotools' here?
makedepend -Y. -I$(global_relative_working_dir)/pikotools -f- *.cpp > Makefile.dep