Commit 14e1f586 authored by Yoni Fogel's avatar Yoni Fogel

Addresses #1931 refs[t:1931] libtokudb.pdb is moved to lib/

git-svn-id: file:///svn/toku/tokudb@13874 c7de825b-a66e-492c-adef-691d508d4ae1
parent cf06b860
......@@ -50,6 +50,10 @@ ifeq ($(OS_CHOICE),windows)
endif
INSTALL_LIBRARIES= $(patsubst %,%.install,$(LIBRARIES))
ifeq ($(OS_CHOICE),windows)
INSTALL_LIBRARIES += libtokudb.pdb.install
endif
.PHONY:install_libs install.% build install local build_tests
......@@ -65,6 +69,9 @@ install_libs: $(INSTALL_LIBRARIES)
%.install: %
if ! diff $* ../lib/$* > /dev/null 2>&1; then cp $* ../lib/; fi
libtokudb.pdb.install: libtokudb.pdb
if ! diff $< ../lib/$< > /dev/null 2>&1; then cp $< ../lib/; fi
.PHONY: install
install: libs install_libs ;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment