Ole Troan | 6855f6c | 2016-04-09 03:16:30 +0200 | [diff] [blame] | 1 | # Copyright (c) 2016 Cisco and/or its affiliates. |
| 2 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | # you may not use this file except in compliance with the License. |
| 4 | # You may obtain a copy of the License at: |
| 5 | # |
| 6 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | # |
| 8 | # Unless required by applicable law or agreed to in writing, software |
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
| 14 | AUTOMAKE_OPTIONS = foreign subdir-objects |
| 15 | ACLOCAL_AMFLAGS = -I m4 |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 16 | AM_CFLAGS = -Wall |
Ole Troan | 6855f6c | 2016-04-09 03:16:30 +0200 | [diff] [blame] | 17 | |
| 18 | BUILT_SOURCES = |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 19 | bin_PROGRAMS = |
| 20 | CLEANFILES = |
| 21 | lib_LTLIBRARIES = |
Ole Troan | 6855f6c | 2016-04-09 03:16:30 +0200 | [diff] [blame] | 22 | noinst_PROGRAMS = test_pneum |
| 23 | nobase_include_HEADERS = pneum/pneum.h |
| 24 | |
| 25 | # |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 26 | # Python / C extension |
Ole Troan | 6855f6c | 2016-04-09 03:16:30 +0200 | [diff] [blame] | 27 | # |
| 28 | lib_LTLIBRARIES += libpneum.la |
Ole Troan | 57c3d66 | 2016-09-12 22:00:32 +0200 | [diff] [blame] | 29 | libpneum_la_SOURCES = pneum/pneum.c |
| 30 | libpneum_la_LIBADD = -lvlibmemoryclient -lvlibapi -lsvm -lvppinfra -lpthread \ |
| 31 | -lm -lrt |
Ole Troan | 6855f6c | 2016-04-09 03:16:30 +0200 | [diff] [blame] | 32 | libpneum_la_LDFLAGS = -module |
| 33 | libpneum_la_CPPFLAGS = |
| 34 | |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 35 | # |
| 36 | # Core VPP API |
| 37 | # |
Ole Troan | 57c3d66 | 2016-09-12 22:00:32 +0200 | [diff] [blame] | 38 | $(srcdir)/vpp_papi/vpe.py: $(prefix)/../vpp/vpp-api/vpe.api |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 39 | $(info Creating Python binding for $@) |
| 40 | $(CC) $(CPPFLAGS) -E -P -C -x c $< \ |
| 41 | | vppapigen --input - --python - \ |
Ole Troan | 57c3d66 | 2016-09-12 22:00:32 +0200 | [diff] [blame] | 42 | | pyvppapigen.py --input - > $(srcdir)/vpp_papi/$(notdir $@) |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 43 | |
Ole Troan | 57c3d66 | 2016-09-12 22:00:32 +0200 | [diff] [blame] | 44 | $(srcdir)/vpp_papi/memclnt.py: $(prefix)/../vlib-api/vlibmemory/memclnt.api |
| 45 | $(info Creating Python binding for $@) |
| 46 | $(CC) $(CPPFLAGS) -E -P -C -x c $< \ |
| 47 | | vppapigen --input - --python - \ |
| 48 | | pyvppapigen.py --input - > $(srcdir)/vpp_papi/$(notdir $@) |
| 49 | |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 50 | # TODO: Support both Python 2 and 3. |
Ole Troan | 57c3d66 | 2016-09-12 22:00:32 +0200 | [diff] [blame] | 51 | install-exec-local: $(srcdir)/vpp_papi/vpe.py $(srcdir)/vpp_papi/memclnt.py |
| 52 | cd $(srcdir); \ |
| 53 | mkdir -p $(prefix)/lib/python2.7/site-packages; \ |
| 54 | PYTHONUSERBASE=$(prefix) \ |
| 55 | python setup.py build_ext -L $(prefix)/lib64 install --user |
Ole Troan | 6855f6c | 2016-04-09 03:16:30 +0200 | [diff] [blame] | 56 | |
| 57 | # |
| 58 | # Test client |
| 59 | # |
| 60 | noinst_PROGRAMS += test_pneum |
| 61 | test_pneum_SOURCES = pneum/pneum.c pneum/test_pneum.c |
Ole Troan | 57c3d66 | 2016-09-12 22:00:32 +0200 | [diff] [blame] | 62 | test_pneum_LDADD = -lvlibmemoryclient -lvlibapi -lsvm -lvppinfra -lpthread \ |
| 63 | -lm -lrt |
| 64 | |
| 65 | |