blob: 5a04a1fedbbeb39d181955882133454abcc266a0 [file] [log] [blame]
Dan Talaycof75360a2010-02-05 22:22:54 -08001#
2# Simple make file to generate OpenFlow python files
3#
4# Fixme: Would like pylibopenflow to be able to run remotely
5# Currently, we have to cd to it's dir and refer back to local
6
7TOP_DIR = ../..
8TOOLS_DIR = ..
9DOC_DIR = ${TOP_DIR}/doc
10
11PYLIBOF_DIR = ${TOOLS_DIR}/pylibopenflow
12
13TARGET_DIR = ${TOP_DIR}/src/python/oftest/ofmsg
14
15# Relative to pyopenflow-pythonize exec location
16OF_HEADER = include/openflow.h
17
18# Relative to here
19ABS_OF_HEADER = ${PYLIBOF_DIR}/${OF_HEADER}
20
21PYTHONIZE = bin/pyopenflow-pythonize.py
22OFP_GEN_CMD = (cd ${PYLIBOF_DIR} && ${PYTHONIZE} -i ${OF_HEADER} \
23 ${TARGET_DIR}/ofp.py)
Dan Talaycoac1cb812010-02-06 20:34:18 -080024OFP_AUX_INFO = ${TARGET_DIR}/ofp_aux.py
Dan Talaycof75360a2010-02-05 22:22:54 -080025
26# Dependencies for ofp.py
27OFP_DEP = ${ABS_OF_HEADER} $(wildcard ${PYLIBOF_DIR}/pylib/*.py)
Dan Talaycoac1cb812010-02-06 20:34:18 -080028OFP_DEP += $(wildcard ${PYLIBOF_DIR}/pylib/of/*.py)
Dan Talaycof75360a2010-02-05 22:22:54 -080029
Dan Talaycoac1cb812010-02-06 20:34:18 -080030# Generated and other files
Dan Talaycof75360a2010-02-05 22:22:54 -080031GEN_FILES := $(addprefix ${TARGET_DIR}/,ofp.py message.py error.py action.py)
32OTHER_FILES := $(addprefix ${TARGET_DIR}/,action_list.py of_message.py)
33LINT_SOURCE := ${GEN_FILES} ${OTHER_FILES}
34LINT_FILES := $(subst .py,.log,${LINT_SOURCE})
35LINT_FILES := $(subst ${TARGET_DIR}/,lint/,${LINT_FILES})
36
37all: ${GEN_FILES}
38 @echo "Generated files"
39
Dan Talaycoac1cb812010-02-06 20:34:18 -080040# The core OpenFlow libraries generated from openflow.h
Dan Talaycof75360a2010-02-05 22:22:54 -080041${TARGET_DIR}/ofp.py: ${OFP_DEP}
Dan Talaycoac1cb812010-02-06 20:34:18 -080042 ${OFP_GEN_CMD} > ${OFP_AUX_INFO}
Dan Talaycof75360a2010-02-05 22:22:54 -080043
44# General rule like src/message.py comes from scripts/message_gen.py
45${TARGET_DIR}/%.py: scripts/%_gen.py ${TARGET_DIR}/ofp.py
46 python $< > $@
47
Dan Talaycoac1cb812010-02-06 20:34:18 -080048# The pylint files
Dan Talaycof75360a2010-02-05 22:22:54 -080049lint/%.log: ${TARGET_DIR}/%.py
50 (cd ${TARGET_DIR} && pylint -e $(notdir $<)) > $@
51
52lint: ${LINT_FILES}
53
54# For now. just local source doc generated
55doc: ${GEN_FILES} ${OTHER_FILES} ${DOC_DIR}/Doxyfile
56 (cd ${DOC_DIR} && doxygen)
57
58clean:
59 rm -rf ${GEN_FILES} ${LINT_FILES} ${DOC_DIR}/html/*
60
61help:
62 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080063 @echo "Makefile for oftest source munger"
64 @echo " Default builds python files and installs in ${TARGET_DIR}"
65 @echo " make local: Generate files and put in src/"
Dan Talaycof75360a2010-02-05 22:22:54 -080066 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080067 @echo "Targets:"
68 @echo " all: Puts generated .py in ${TARGET_DIR}"
69 @echo " lint: Puts error report in lint/*.log"
70 @echo " doc: Runs doxygen on generated files in ../../doc"
71 @echo " clean: Removes generated files"
Dan Talaycof75360a2010-02-05 22:22:54 -080072 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080073 @echo "Debug info:"
Dan Talaycof75360a2010-02-05 22:22:54 -080074 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080075 @echo "Files generated GEN_FILES: ${GEN_FILES}"
Dan Talaycof75360a2010-02-05 22:22:54 -080076 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080077 @echo "Dependencies for ofp.py OFP_DEP: ${OFP_DEP}"
Dan Talaycof75360a2010-02-05 22:22:54 -080078 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080079 @echo "Already created files OTHER_FILES: ${OTHER_FILES}"
80 @echo
81 @echo "LINT_FILES: ${LINT_FILES}"
Dan Talaycof75360a2010-02-05 22:22:54 -080082
83
84.PHONY: all local install help doc lint clean