ESL-111 Fix esl/python/Makefile to create install directory

This need when using make install DESTDIR=...
This commit is contained in:
Artur Kraev 2015-10-28 01:30:01 +03:00
parent cc25c46bfc
commit 54be6fc573
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ _ESL.so: esl_wrap.o
$(CXX) $(SOLINK) esl_wrap.o $(MYLIB) $(LOCAL_LDFLAGS) -o _ESL.so -L. $(LIBS)
install: _ESL.so
mkdir -p $(SITE_DIR)
install -m 755 _ESL.so $(SITE_DIR)
install -m 755 ESL.py $(SITE_DIR)