Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 1 | # 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. |
| 34 | LOXI_OUTPUT_DIR = loxi_output |
| 35 | |
| 36 | # Generated files depend on all Loxi code and input files |
YAMAMOTO Takashi | f258d0e | 2013-07-01 17:24:49 +0900 | [diff] [blame] | 37 | LOXI_PY_FILES=$(shell find . \( -name loxi_output -prune \ |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 38 | -o -name templates -prune \ |
Rich Lane | a2477b4 | 2013-05-02 11:00:25 -0700 | [diff] [blame] | 39 | -o -name tests -prune \ |
YAMAMOTO Takashi | f258d0e | 2013-07-01 17:24:49 +0900 | [diff] [blame] | 40 | -o -name '*' \ |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 41 | \) -a -name '*.py') |
| 42 | LOXI_TEMPLATE_FILES=$(shell find */templates -type f -a \ |
| 43 | \! \( -name '*.cache' -o -name '.*' \)) |
Rich Lane | bc46870 | 2013-04-08 17:47:37 -0700 | [diff] [blame] | 44 | INPUT_FILES = $(wildcard openflow_input/*) |
Andreas Wundsam | 7f3c184 | 2013-08-02 22:17:49 -0700 | [diff] [blame] | 45 | TEST_DATA = $(shell find test_data -name '*.data') |
Andreas Wundsam | d458199 | 2013-09-11 11:12:58 -0700 | [diff] [blame] | 46 | OPENFLOWJ_WORKSPACE = openflowj-loxi |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 47 | |
| 48 | all: c python |
| 49 | |
| 50 | c: .loxi_ts.c |
| 51 | |
Andreas Wundsam | 7f3c184 | 2013-08-02 22:17:49 -0700 | [diff] [blame] | 52 | .loxi_ts.c: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES ${TEST_DATA} |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 53 | ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=c |
| 54 | touch $@ |
| 55 | |
| 56 | python: .loxi_ts.python |
| 57 | |
Andreas Wundsam | 7f3c184 | 2013-08-02 22:17:49 -0700 | [diff] [blame] | 58 | .loxi_ts.python: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES} ${TEST_DATA} |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 59 | ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=python |
| 60 | touch $@ |
| 61 | |
Rich Lane | 8e5a1f8 | 2013-06-03 20:11:01 -0700 | [diff] [blame] | 62 | python-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 Wundsam | fd67d5d | 2013-05-06 17:51:55 -0700 | [diff] [blame] | 71 | java: .loxi_ts.java |
Andreas Wundsam | d458199 | 2013-09-11 11:12:58 -0700 | [diff] [blame] | 72 | mkdir -p ${OPENFLOWJ_WORKSPACE} |
| 73 | ln -sf ../java_gen/pre-written/pom.xml ${OPENFLOWJ_WORKSPACE}/pom.xml |
Andreas Wundsam | baf058d | 2013-09-12 15:58:17 -0700 | [diff] [blame] | 74 | ln -sf ../java_gen/pre-written/LICENSE.txt ${OPENFLOWJ_WORKSPACE}/LICENSE.txt |
Andreas Wundsam | d458199 | 2013-09-11 11:12:58 -0700 | [diff] [blame] | 75 | 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 Wundsam | fd67d5d | 2013-05-06 17:51:55 -0700 | [diff] [blame] | 77 | |
Andreas Wundsam | 7f3c184 | 2013-08-02 22:17:49 -0700 | [diff] [blame] | 78 | .loxi_ts.java: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES} ${TEST_DATA} |
Andreas Wundsam | fd67d5d | 2013-05-06 17:51:55 -0700 | [diff] [blame] | 79 | ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=java |
| 80 | touch $@ |
| 81 | |
Andreas Wundsam | 6965722 | 2013-08-02 22:18:30 -0700 | [diff] [blame] | 82 | java-eclipse: java |
Andreas Wundsam | d458199 | 2013-09-11 11:12:58 -0700 | [diff] [blame] | 83 | 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 Wundsam | fd67d5d | 2013-05-06 17:51:55 -0700 | [diff] [blame] | 86 | |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 87 | clean: |
| 88 | rm -rf loxi_output # only delete generated files in the default directory |
Andreas Wundsam | 318619e | 2013-09-13 14:17:37 -0700 | [diff] [blame] | 89 | rm -rf openflowj-loxi |
Andreas Wundsam | 5b277d9 | 2013-08-03 21:22:49 -0700 | [diff] [blame] | 90 | rm -f loxigen.log loxigen-test.log .loxi_ts.c .loxi_ts.python .loxi_ts.java |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 91 | |
| 92 | debug: |
| 93 | @echo "LOXI_OUTPUT_DIR=\"${LOXI_OUTPUT_DIR}\"" |
| 94 | @echo |
| 95 | @echo "LOXI_PY_FILES=\"${LOXI_PY_FILES}\"" |
| 96 | @echo |
| 97 | @echo "LOXI_TEMPLATE_FILES=\"${LOXI_TEMPLATE_FILES}\"" |
| 98 | @echo |
| 99 | @echo "INPUT_FILES=\"${INPUT_FILES}\"" |
| 100 | |
| 101 | check: |
Rich Lane | 569338c | 2013-06-17 15:51:24 -0700 | [diff] [blame] | 102 | ./utest/test_parser.py |
| 103 | ./utest/test_frontend.py |
| 104 | ./utest/test_test_data.py |
Andreas Wundsam | 396ed3d | 2013-07-24 19:01:44 -0700 | [diff] [blame] | 105 | ./utest/test_generic_utils.py |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 106 | |
Rich Lane | a22233e | 2013-04-25 13:18:41 -0700 | [diff] [blame] | 107 | check-py: python |
Rich Lane | 9a3f1fd | 2013-05-10 16:29:17 -0700 | [diff] [blame] | 108 | PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/generic_util.py |
| 109 | PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of10.py |
| 110 | PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of11.py |
| 111 | PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of12.py |
| 112 | PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of13.py |
Rich Lane | a22233e | 2013-04-25 13:18:41 -0700 | [diff] [blame] | 113 | |
Rich Lane | 99c29c3 | 2013-05-29 17:09:21 -0700 | [diff] [blame] | 114 | check-c: c |
Rich Lane | 9ff6d16 | 2013-07-21 23:32:27 -0700 | [diff] [blame] | 115 | make -C ${LOXI_OUTPUT_DIR}/locitest |
| 116 | ${LOXI_OUTPUT_DIR}/locitest/locitest |
Rich Lane | 99c29c3 | 2013-05-29 17:09:21 -0700 | [diff] [blame] | 117 | |
Andreas Wundsam | 5b277d9 | 2013-08-03 21:22:49 -0700 | [diff] [blame] | 118 | check-java: java |
Andreas Wundsam | d458199 | 2013-09-11 11:12:58 -0700 | [diff] [blame] | 119 | cd ${OPENFLOWJ_WORKSPACE} && mvn compile test-compile test |
Andreas Wundsam | 5b277d9 | 2013-08-03 21:22:49 -0700 | [diff] [blame] | 120 | |
| 121 | package-java: java |
Andreas Wundsam | d458199 | 2013-09-11 11:12:58 -0700 | [diff] [blame] | 122 | cd ${OPENFLOWJ_WORKSPACE} && mvn package |
Andreas Wundsam | 5b277d9 | 2013-08-03 21:22:49 -0700 | [diff] [blame] | 123 | |
Andreas Wundsam | 53dfaf2 | 2013-09-10 20:05:35 -0700 | [diff] [blame] | 124 | deploy-java: java |
Andreas Wundsam | d458199 | 2013-09-11 11:12:58 -0700 | [diff] [blame] | 125 | cd ${OPENFLOWJ_WORKSPACE} && mvn deploy |
| 126 | |
| 127 | install-java: java |
| 128 | cd ${OPENFLOWJ_WORKSPACE} && mvn install |
| 129 | |
Andreas Wundsam | 53dfaf2 | 2013-09-10 20:05:35 -0700 | [diff] [blame] | 130 | |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 131 | pylint: |
| 132 | pylint -E ${LOXI_PY_FILES} |
| 133 | |
| 134 | .PHONY: all clean debug check pylint c python |