blob: dbaf08b537386bd236eddd9f436bdb03cfdddb46 [file] [log] [blame]
Rich Lanea06d0c32013-03-25 08:52:03 -07001# Copyright 2013, Big Switch Networks, Inc.
2#
3# LoxiGen is licensed under the Eclipse Public License, version 1.0 (EPL), with
4# the following special exception:
5#
6# LOXI Exception
7#
8# As a special exception to the terms of the EPL, you may distribute libraries
9# generated by LoxiGen (LoxiGen Libraries) under the terms of your choice, provided
10# that copyright and licensing notices generated by LoxiGen are not altered or removed
11# from the LoxiGen Libraries and the notice provided below is (i) included in
12# the LoxiGen Libraries, if distributed in source code form and (ii) included in any
13# documentation for the LoxiGen Libraries, if distributed in binary form.
14#
15# Notice: "Copyright 2013, Big Switch Networks, Inc. This library was generated by the LoxiGen Compiler."
16#
17# You may not use this file except in compliance with the EPL or LOXI Exception. You may obtain
18# a copy of the EPL at:
19#
20# http://www.eclipse.org/legal/epl-v10.html
21#
22# Unless required by applicable law or agreed to in writing, software
23# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
24# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
25# EPL for the specific language governing permissions and limitations
26# under the EPL.
27
28# Available targets: all, c, python, clean
29
30# This Makefile is just for convenience. Users that need to pass additional
31# options to loxigen.py are encouraged to run it directly.
32
33# Where to put the generated code.
34LOXI_OUTPUT_DIR = loxi_output
35
36# Generated files depend on all Loxi code and input files
YAMAMOTO Takashif258d0e2013-07-01 17:24:49 +090037LOXI_PY_FILES=$(shell find . \( -name loxi_output -prune \
Rich Lanea06d0c32013-03-25 08:52:03 -070038 -o -name templates -prune \
Rich Lanea2477b42013-05-02 11:00:25 -070039 -o -name tests -prune \
YAMAMOTO Takashif258d0e2013-07-01 17:24:49 +090040 -o -name '*' \
Rich Lanea06d0c32013-03-25 08:52:03 -070041 \) -a -name '*.py')
42LOXI_TEMPLATE_FILES=$(shell find */templates -type f -a \
43 \! \( -name '*.cache' -o -name '.*' \))
Rich Lanebc468702013-04-08 17:47:37 -070044INPUT_FILES = $(wildcard openflow_input/*)
Andreas Wundsam7f3c1842013-08-02 22:17:49 -070045TEST_DATA = $(shell find test_data -name '*.data')
Andreas Wundsamd4581992013-09-11 11:12:58 -070046OPENFLOWJ_WORKSPACE = openflowj-loxi
Rich Lanea06d0c32013-03-25 08:52:03 -070047
Andreas Wundsam990b6432013-09-19 13:08:20 -070048all: c python java
Rich Lanea06d0c32013-03-25 08:52:03 -070049
50c: .loxi_ts.c
51
Andreas Wundsam5dbb82e2013-09-23 14:39:11 -070052.loxi_ts.c: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES} ${TEST_DATA}
Rich Lanea06d0c32013-03-25 08:52:03 -070053 ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=c
54 touch $@
55
56python: .loxi_ts.python
57
Andreas Wundsam7f3c1842013-08-02 22:17:49 -070058.loxi_ts.python: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES} ${TEST_DATA}
Rich Lanea06d0c32013-03-25 08:52:03 -070059 ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=python
60 touch $@
61
Rich Lane8e5a1f82013-06-03 20:11:01 -070062python-doc: python
63 rm -rf ${LOXI_OUTPUT_DIR}/pyloxi-doc
64 mkdir -p ${LOXI_OUTPUT_DIR}/pyloxi-doc
65 cp -a py_gen/sphinx ${LOXI_OUTPUT_DIR}/pyloxi-doc/input
66 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi sphinx-apidoc -o ${LOXI_OUTPUT_DIR}/pyloxi-doc/input ${LOXI_OUTPUT_DIR}/pyloxi
67 sphinx-build ${LOXI_OUTPUT_DIR}/pyloxi-doc/input ${LOXI_OUTPUT_DIR}/pyloxi-doc
68 rm -rf ${LOXI_OUTPUT_DIR}/pyloxi-doc/input
69 @echo "HTML documentation output to ${LOXI_OUTPUT_DIR}/pyloxi-doc"
70
Andreas Wundsamfd67d5d2013-05-06 17:51:55 -070071java: .loxi_ts.java
Andreas Wundsamd4581992013-09-11 11:12:58 -070072 mkdir -p ${OPENFLOWJ_WORKSPACE}
73 ln -sf ../java_gen/pre-written/pom.xml ${OPENFLOWJ_WORKSPACE}/pom.xml
Andreas Wundsambaf058d2013-09-12 15:58:17 -070074 ln -sf ../java_gen/pre-written/LICENSE.txt ${OPENFLOWJ_WORKSPACE}/LICENSE.txt
Andreas Wundsamd4581992013-09-11 11:12:58 -070075 ln -sf ../java_gen/pre-written/src ${OPENFLOWJ_WORKSPACE}/src
76 rsync --checksum --delete -rv ${LOXI_OUTPUT_DIR}/openflowj/src/ ${OPENFLOWJ_WORKSPACE}/gen-src
Andreas Wundsamfd67d5d2013-05-06 17:51:55 -070077
Andreas Wundsam7f3c1842013-08-02 22:17:49 -070078.loxi_ts.java: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES} ${TEST_DATA}
Andreas Wundsamfd67d5d2013-05-06 17:51:55 -070079 ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=java
80 touch $@
81
Andreas Wundsam69657222013-08-02 22:18:30 -070082java-eclipse: java
Andreas Wundsamd4581992013-09-11 11:12:58 -070083 cd ${OPENFLOWJ_WORKSPACE} && mvn eclipse:eclipse
84 # Unfortunately, mvn eclipse:eclipse resolves the symlink, which doesn't work with eclipse
85 cd ${OPENFLOWJ_WORKSPACE} && perl -pi -e 's{<classpathentry kind="src" path="[^"]*/java_gen/pre-written/src/}{<classpathentry kind="src" path="src/}' .classpath
Andreas Wundsamfd67d5d2013-05-06 17:51:55 -070086
Rich Lane45dcae12013-06-04 13:07:41 -070087wireshark: .loxi_ts.wireshark
88
89.loxi_ts.wireshark: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES}
90 ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=wireshark
91 touch $@
92
Rich Lanea06d0c32013-03-25 08:52:03 -070093clean:
94 rm -rf loxi_output # only delete generated files in the default directory
Andreas Wundsam5b277d92013-08-03 21:22:49 -070095 rm -f loxigen.log loxigen-test.log .loxi_ts.c .loxi_ts.python .loxi_ts.java
Rich Lanea06d0c32013-03-25 08:52:03 -070096
97debug:
98 @echo "LOXI_OUTPUT_DIR=\"${LOXI_OUTPUT_DIR}\""
99 @echo
100 @echo "LOXI_PY_FILES=\"${LOXI_PY_FILES}\""
101 @echo
102 @echo "LOXI_TEMPLATE_FILES=\"${LOXI_TEMPLATE_FILES}\""
103 @echo
104 @echo "INPUT_FILES=\"${INPUT_FILES}\""
105
Andreas Wundsam990b6432013-09-19 13:08:20 -0700106check-all: check check-c check-py check-java
107
Rich Lanea06d0c32013-03-25 08:52:03 -0700108check:
Rich Lane569338c2013-06-17 15:51:24 -0700109 ./utest/test_parser.py
110 ./utest/test_frontend.py
111 ./utest/test_test_data.py
Andreas Wundsam396ed3d2013-07-24 19:01:44 -0700112 ./utest/test_generic_utils.py
Rich Lanea06d0c32013-03-25 08:52:03 -0700113
Rich Lanea22233e2013-04-25 13:18:41 -0700114check-py: python
Rich Lane9a3f1fd2013-05-10 16:29:17 -0700115 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/generic_util.py
116 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of10.py
117 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of11.py
118 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of12.py
119 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of13.py
Rich Lanea22233e2013-04-25 13:18:41 -0700120
Rich Lane99c29c32013-05-29 17:09:21 -0700121check-c: c
Rich Lane9ff6d162013-07-21 23:32:27 -0700122 make -C ${LOXI_OUTPUT_DIR}/locitest
123 ${LOXI_OUTPUT_DIR}/locitest/locitest
Rich Lane99c29c32013-05-29 17:09:21 -0700124
Andreas Wundsam5b277d92013-08-03 21:22:49 -0700125check-java: java
Andreas Wundsamd4581992013-09-11 11:12:58 -0700126 cd ${OPENFLOWJ_WORKSPACE} && mvn compile test-compile test
Andreas Wundsam5b277d92013-08-03 21:22:49 -0700127
128package-java: java
Andreas Wundsamd4581992013-09-11 11:12:58 -0700129 cd ${OPENFLOWJ_WORKSPACE} && mvn package
Andreas Wundsam5b277d92013-08-03 21:22:49 -0700130
Andreas Wundsam53dfaf22013-09-10 20:05:35 -0700131deploy-java: java
Andreas Wundsamd4581992013-09-11 11:12:58 -0700132 cd ${OPENFLOWJ_WORKSPACE} && mvn deploy
133
134install-java: java
135 cd ${OPENFLOWJ_WORKSPACE} && mvn install
136
Andreas Wundsam53dfaf22013-09-10 20:05:35 -0700137
Rich Lanea06d0c32013-03-25 08:52:03 -0700138pylint:
139 pylint -E ${LOXI_PY_FILES}
140
141.PHONY: all clean debug check pylint c python