blob: c89b937f3cdae1925c9760b1982d3c652af686a0 [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)
Dan Talaycoe226eb12010-02-18 23:06:30 -080032OTHER_FILES := $(addprefix ${TARGET_DIR}/,action_list.py parse.py \
33 controller.py dataplane.py)
Dan Talaycof75360a2010-02-05 22:22:54 -080034LINT_SOURCE := ${GEN_FILES} ${OTHER_FILES}
35LINT_FILES := $(subst .py,.log,${LINT_SOURCE})
36LINT_FILES := $(subst ${TARGET_DIR}/,lint/,${LINT_FILES})
37
38all: ${GEN_FILES}
Dan Talaycof75360a2010-02-05 22:22:54 -080039
Dan Talaycoac1cb812010-02-06 20:34:18 -080040# The core OpenFlow libraries generated from openflow.h
Dan Talaycob9cb5482010-02-09 15:23:12 -080041${TARGET_DIR}/cstruct.py: ${CSTRUCT_DEP}
42 ${CSTRUCT_GEN_CMD} > ${CSTRUCT_AUX_INFO}
Dan Talaycof75360a2010-02-05 22:22:54 -080043
44# General rule like src/message.py comes from scripts/message_gen.py
Dan Talaycob9cb5482010-02-09 15:23:12 -080045${TARGET_DIR}/%.py: scripts/%_gen.py ${TARGET_DIR}/cstruct.py
Dan Talaycof75360a2010-02-05 22:22:54 -080046 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
Dan Talayco9b591892010-02-09 15:28:29 -080050 mkdir -p lint
Dan Talaycof75360a2010-02-05 22:22:54 -080051 (cd ${TARGET_DIR} && pylint -e $(notdir $<)) > $@
52
Dan Talaycod7e2dbe2010-02-13 21:51:15 -080053# Note that lint has issues with scapy syntax
Dan Talaycof75360a2010-02-05 22:22:54 -080054lint: ${LINT_FILES}
55
56# For now. just local source doc generated
57doc: ${GEN_FILES} ${OTHER_FILES} ${DOC_DIR}/Doxyfile
58 (cd ${DOC_DIR} && doxygen)
59
60clean:
61 rm -rf ${GEN_FILES} ${LINT_FILES} ${DOC_DIR}/html/*
62
Dan Talaycoc85e97e2010-02-07 22:59:04 -080063test: all
64 (cd tests && python msg_test.py) > tests/msg_test.log
65
Dan Talaycof75360a2010-02-05 22:22:54 -080066help:
67 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080068 @echo "Makefile for oftest source munger"
69 @echo " Default builds python files and installs in ${TARGET_DIR}"
70 @echo " make local: Generate files and put in src/"
Dan Talaycof75360a2010-02-05 22:22:54 -080071 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080072 @echo "Targets:"
73 @echo " all: Puts generated .py in ${TARGET_DIR}"
74 @echo " lint: Puts error report in lint/*.log"
75 @echo " doc: Runs doxygen on generated files in ../../doc"
76 @echo " clean: Removes generated files"
Dan Talaycof75360a2010-02-05 22:22:54 -080077 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080078 @echo "Debug info:"
Dan Talaycof75360a2010-02-05 22:22:54 -080079 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080080 @echo "Files generated GEN_FILES: ${GEN_FILES}"
Dan Talaycof75360a2010-02-05 22:22:54 -080081 @echo
Dan Talaycob9cb5482010-02-09 15:23:12 -080082 @echo "Dependencies for cstruct.py CSTRUCT_DEP: ${CSTRUCT_DEP}"
Dan Talaycof75360a2010-02-05 22:22:54 -080083 @echo
Dan Talayco8176c912010-02-05 22:27:55 -080084 @echo "Already created files OTHER_FILES: ${OTHER_FILES}"
85 @echo
86 @echo "LINT_FILES: ${LINT_FILES}"
Dan Talaycof75360a2010-02-05 22:22:54 -080087
88
Dan Talaycoc85e97e2010-02-07 22:59:04 -080089.PHONY: all local install help doc lint clean test