blob: 4e979d234e9db1181f927bf1d8f58728e96d3a33 [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
Dan Talaycod7e2dbe2010-02-13 21:51:15 -080013TARGET_DIR = ${TOP_DIR}/src/python/oftest
Dan Talaycof75360a2010-02-05 22:22:54 -080014
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
Dan Talaycob9cb5482010-02-09 15:23:12 -080022CSTRUCT_GEN_CMD = (cd ${PYLIBOF_DIR} && ${PYTHONIZE} -i ${OF_HEADER} \
23 ${TARGET_DIR}/cstruct.py)
24CSTRUCT_AUX_INFO = ${TARGET_DIR}/class_maps.py
Dan Talaycof75360a2010-02-05 22:22:54 -080025
Dan Talaycob9cb5482010-02-09 15:23:12 -080026# Dependencies for cstruct.py
27CSTRUCT_DEP = ${ABS_OF_HEADER} $(wildcard ${PYLIBOF_DIR}/pylib/*.py)
28CSTRUCT_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 Talaycob9cb5482010-02-09 15:23:12 -080031GEN_FILES := $(addprefix ${TARGET_DIR}/,cstruct.py message.py error.py action.py)
32OTHER_FILES := $(addprefix ${TARGET_DIR}/,action_list.py parse.py)
Dan Talaycof75360a2010-02-05 22:22:54 -080033LINT_SOURCE := ${GEN_FILES} ${OTHER_FILES}
34LINT_FILES := $(subst .py,.log,${LINT_SOURCE})
35LINT_FILES := $(subst ${TARGET_DIR}/,lint/,${LINT_FILES})
36
37all: ${GEN_FILES}
Dan Talaycof75360a2010-02-05 22:22:54 -080038
Dan Talaycoac1cb812010-02-06 20:34:18 -080039# The core OpenFlow libraries generated from openflow.h
Dan Talaycob9cb5482010-02-09 15:23:12 -080040${TARGET_DIR}/cstruct.py: ${CSTRUCT_DEP}
41 ${CSTRUCT_GEN_CMD} > ${CSTRUCT_AUX_INFO}
Dan Talaycof75360a2010-02-05 22:22:54 -080042
43# General rule like src/message.py comes from scripts/message_gen.py
Dan Talaycob9cb5482010-02-09 15:23:12 -080044${TARGET_DIR}/%.py: scripts/%_gen.py ${TARGET_DIR}/cstruct.py
Dan Talaycof75360a2010-02-05 22:22:54 -080045 python $< > $@
46
Dan Talaycoac1cb812010-02-06 20:34:18 -080047# The pylint files
Dan Talaycof75360a2010-02-05 22:22:54 -080048lint/%.log: ${TARGET_DIR}/%.py
Dan Talayco9b591892010-02-09 15:28:29 -080049 mkdir -p lint
Dan Talaycof75360a2010-02-05 22:22:54 -080050 (cd ${TARGET_DIR} && pylint -e $(notdir $<)) > $@
51
Dan Talaycod7e2dbe2010-02-13 21:51:15 -080052# Note that lint has issues with scapy syntax
Dan Talaycof75360a2010-02-05 22:22:54 -080053lint: ${LINT_FILES}
54
55# For now. just local source doc generated
56doc: ${GEN_FILES} ${OTHER_FILES} ${DOC_DIR}/Doxyfile
57 (cd ${DOC_DIR} && doxygen)
58
59clean:
60 rm -rf ${GEN_FILES} ${LINT_FILES} ${DOC_DIR}/html/*
61
Dan Talaycoc85e97e2010-02-07 22:59:04 -080062test: all
63 (cd tests && python msg_test.py) > tests/msg_test.log
64
Dan Talaycof75360a2010-02-05 22:22:54 -080065help:
66 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080067 @echo "Makefile for oftest source munger"
68 @echo " Default builds python files and installs in ${TARGET_DIR}"
69 @echo " make local: Generate files and put in src/"
Dan Talaycof75360a2010-02-05 22:22:54 -080070 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080071 @echo "Targets:"
72 @echo " all: Puts generated .py in ${TARGET_DIR}"
73 @echo " lint: Puts error report in lint/*.log"
74 @echo " doc: Runs doxygen on generated files in ../../doc"
75 @echo " clean: Removes generated files"
Dan Talaycof75360a2010-02-05 22:22:54 -080076 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080077 @echo "Debug info:"
Dan Talaycof75360a2010-02-05 22:22:54 -080078 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080079 @echo "Files generated GEN_FILES: ${GEN_FILES}"
Dan Talaycof75360a2010-02-05 22:22:54 -080080 @echo
Dan Talaycob9cb5482010-02-09 15:23:12 -080081 @echo "Dependencies for cstruct.py CSTRUCT_DEP: ${CSTRUCT_DEP}"
Dan Talaycof75360a2010-02-05 22:22:54 -080082 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080083 @echo "Already created files OTHER_FILES: ${OTHER_FILES}"
84 @echo
85 @echo "LINT_FILES: ${LINT_FILES}"
Dan Talaycof75360a2010-02-05 22:22:54 -080086
87
Dan Talaycoc85e97e2010-02-07 22:59:04 -080088.PHONY: all local install help doc lint clean test