blob: c0cc47339133df25a04765b8176802537f6d70ab [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/*)
Rich Lanea06d0c32013-03-25 08:52:03 -070045
46all: c python
47
48c: .loxi_ts.c
49
50.loxi_ts.c: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES}
51 ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=c
52 touch $@
53
54python: .loxi_ts.python
55
56.loxi_ts.python: ${LOXI_PY_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES}
57 ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=python
58 touch $@
59
Rich Lane8e5a1f82013-06-03 20:11:01 -070060python-doc: python
61 rm -rf ${LOXI_OUTPUT_DIR}/pyloxi-doc
62 mkdir -p ${LOXI_OUTPUT_DIR}/pyloxi-doc
63 cp -a py_gen/sphinx ${LOXI_OUTPUT_DIR}/pyloxi-doc/input
64 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi sphinx-apidoc -o ${LOXI_OUTPUT_DIR}/pyloxi-doc/input ${LOXI_OUTPUT_DIR}/pyloxi
65 sphinx-build ${LOXI_OUTPUT_DIR}/pyloxi-doc/input ${LOXI_OUTPUT_DIR}/pyloxi-doc
66 rm -rf ${LOXI_OUTPUT_DIR}/pyloxi-doc/input
67 @echo "HTML documentation output to ${LOXI_OUTPUT_DIR}/pyloxi-doc"
68
Andreas Wundsamfd67d5d2013-05-06 17:51:55 -070069java: .loxi_ts.java
70
71.loxi_ts.java: ${LOXI_JAVA_FILES} ${LOXI_TEMPLATE_FILES} ${INPUT_FILES}
72 ./loxigen.py --install-dir=${LOXI_OUTPUT_DIR} --lang=java
73 touch $@
74
75
Rich Lanea06d0c32013-03-25 08:52:03 -070076clean:
77 rm -rf loxi_output # only delete generated files in the default directory
78 rm -f loxigen.log loxigen-test.log .loxi_ts.c .loxi_ts.python
79
80debug:
81 @echo "LOXI_OUTPUT_DIR=\"${LOXI_OUTPUT_DIR}\""
82 @echo
83 @echo "LOXI_PY_FILES=\"${LOXI_PY_FILES}\""
84 @echo
85 @echo "LOXI_TEMPLATE_FILES=\"${LOXI_TEMPLATE_FILES}\""
86 @echo
87 @echo "INPUT_FILES=\"${INPUT_FILES}\""
88
89check:
Rich Lane569338c2013-06-17 15:51:24 -070090 ./utest/test_parser.py
91 ./utest/test_frontend.py
92 ./utest/test_test_data.py
Andreas Wundsam396ed3d2013-07-24 19:01:44 -070093 ./utest/test_generic_utils.py
Rich Lanea06d0c32013-03-25 08:52:03 -070094
Rich Lanea22233e2013-04-25 13:18:41 -070095check-py: python
Rich Lane9a3f1fd2013-05-10 16:29:17 -070096 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/generic_util.py
97 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of10.py
98 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of11.py
99 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of12.py
100 PYTHONPATH=${LOXI_OUTPUT_DIR}/pyloxi:. python py_gen/tests/of13.py
Rich Lanea22233e2013-04-25 13:18:41 -0700101
Dan Talaycob392f6b2013-06-12 10:48:17 -0700102CTEST_EXEC = ${LOXI_OUTPUT_DIR}/locitest/locitest
103CTEST_SOURCE = ${LOXI_OUTPUT_DIR}/locitest/src/*.c
104CTEST_SOURCE += ${LOXI_OUTPUT_DIR}/loci/src/*.c
105CTEST_INC = -I ${LOXI_OUTPUT_DIR}/loci/inc
106CTEST_INC += -I ${LOXI_OUTPUT_DIR}/locitest/inc
107CTEST_INC += -I ${LOXI_OUTPUT_DIR}/loci/src
108CTEST_CFLAGS = -Wall -Werror -g
109
Rich Lane99c29c32013-05-29 17:09:21 -0700110check-c: c
Dan Talaycob392f6b2013-06-12 10:48:17 -0700111 gcc ${CTEST_CFLAGS} -o ${CTEST_EXEC} ${CTEST_SOURCE} ${CTEST_INC}
112 ${CTEST_EXEC}
Rich Lane99c29c32013-05-29 17:09:21 -0700113
Rich Lanea06d0c32013-03-25 08:52:03 -0700114pylint:
115 pylint -E ${LOXI_PY_FILES}
116
117.PHONY: all clean debug check pylint c python