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 |
| 37 | LOXI_PY_FILES=$(shell find \( -name loxi_output -prune \ |
| 38 | -o -name templates -prune \ |
| 39 | -o -true \ |
| 40 | \) -a -name '*.py') |
| 41 | LOXI_TEMPLATE_FILES=$(shell find */templates -type f -a \ |
| 42 | \! \( -name '*.cache' -o -name '.*' \)) |
| 43 | INPUT_FILES = $(wildcard openflow_input/*) $(wildcard canonical/*) |
| 44 | |
| 45 | all: c python |
| 46 | |
| 47 | c: .loxi_ts.c |
| 48 | |
| 49 | .loxi_ts.c: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES} |
| 50 | ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=c |
| 51 | touch $@ |
| 52 | |
| 53 | python: .loxi_ts.python |
| 54 | |
| 55 | .loxi_ts.python: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES} |
| 56 | ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=python |
| 57 | touch $@ |
| 58 | |
| 59 | clean: |
| 60 | rm -rf loxi_output # only delete generated files in the default directory |
| 61 | rm -f loxigen.log loxigen-test.log .loxi_ts.c .loxi_ts.python |
| 62 | |
| 63 | debug: |
| 64 | @echo "LOXI_OUTPUT_DIR=\"${LOXI_OUTPUT_DIR}\"" |
| 65 | @echo |
| 66 | @echo "LOXI_PY_FILES=\"${LOXI_PY_FILES}\"" |
| 67 | @echo |
| 68 | @echo "LOXI_TEMPLATE_FILES=\"${LOXI_TEMPLATE_FILES}\"" |
| 69 | @echo |
| 70 | @echo "INPUT_FILES=\"${INPUT_FILES}\"" |
| 71 | |
| 72 | check: |
| 73 | @echo Sending output to loxigen-test.log |
| 74 | cd utest && \ |
| 75 | ./identifiers_test.py > ../loxigen-test.log && \ |
| 76 | ./c_utils_test.py >> ../loxigen-test.log && \ |
| 77 | ./of_h_utils_test.py >> ../loxigen-test.log |
| 78 | PYTHONPATH=. ./utest/test_parser.py |
| 79 | |
| 80 | pylint: |
| 81 | pylint -E ${LOXI_PY_FILES} |
| 82 | |
| 83 | .PHONY: all clean debug check pylint c python |
| 84 | |
| 85 | ifdef BIGCODE |
| 86 | # Internal build system compatibility |
| 87 | MODULE := LoxiGen |
| 88 | LOXI_OUTPUT_DIR = ${BIGCODE}/Modules |
| 89 | modulemake: |
| 90 | .PHONY: modulemake |
| 91 | endif |