changed: if EZC_USE_WINIX_LOGGER macro is defined then we add -I../../winix flag

for compiling



git-svn-id: svn://ttmath.org/publicrep/ezc/trunk@442 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2013-10-15 23:48:06 +00:00
parent ac37982ee7
commit 23ce3e83df
1 changed files with 9 additions and 1 deletions

View File

@ -7,12 +7,20 @@ all: $(libname)
$(libname): $(o)
ar rcs $(libname) $(o)
additionalinclude =
ifdef EZC_USE_WINIX_LOGGER
additionalinclude = -I../../winix
endif
%.o: %.cpp
$(CXX) -c $(CXXFLAGS) $<
$(CXX) -c $(CXXFLAGS) -I../../pikotools $(additionalinclude) $<
depend:
# we do not use $(additionalinclude) here because the dependencies would be added to the repository
# and messes other projects
makedepend -Y. -I../../pikotools -f- *.cpp > Makefile.dep
echo -n "o = " > Makefile.o.dep
ls -1 *.cpp | xargs -I foo echo -n foo " " | sed -E "s/([^\.]*)\.cpp[ ]/\1\.o/g" >> Makefile.o.dep