This change condenses the directory structure to something more similar to what we had before while producing similar packages. It also introduces version.py which allows us to get the version from git tags (or a fallback version if not available). Fixes lp bug 889336 Fixes lp bug 888795 Change-Id: I86136bd9dbabb5eb1f8366ed665ed9b54f695124
31 lines
707 B
Makefile
31 lines
707 B
Makefile
QUANTUM_PATH=../../../
|
|
|
|
# TODO(bgh): DIST_DIR and target for plugin
|
|
|
|
AGENT_DIST_DIR=ovs_quantum_agent
|
|
AGENT_DIST_TARBALL=ovs_quantum_agent.tgz
|
|
|
|
agent-dist: distclean
|
|
mkdir $(AGENT_DIST_DIR)
|
|
cp agent/*.py $(AGENT_DIST_DIR)
|
|
cp agent/*.sh $(AGENT_DIST_DIR)
|
|
cp README $(AGENT_DIST_DIR)
|
|
cp ovs_quantum_plugin.ini $(AGENT_DIST_DIR)
|
|
tar -zcvf $(AGENT_DIST_TARBALL) $(AGENT_DIST_DIR)/
|
|
@echo "Agent tarball created: $(AGENT_DIST_TARBALL)"
|
|
@echo "See README for installation details"
|
|
|
|
all:
|
|
|
|
clean:
|
|
$(find . -name *.pyc | xargs rm)
|
|
|
|
distclean:
|
|
-rm -rf $(AGENT_DIST_DIR)
|
|
-rm -f $(AGENT_DIST_TARBALL)
|
|
|
|
check:
|
|
PYTHONPATH=$(QUANTUM_PATH):. python ovs_quantum_plugin.py
|
|
|
|
PHONY: agent-dist check clean distclean
|