diff options
author | Marcin MaĆagowski <marcin.malagowski@mobica.com> | 2013-03-17 13:59:51 +0100 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-03-20 01:35:25 +0100 |
commit | 6393c7fe38a6c49c6e962d1aa7c9698e9a3892fb (patch) | |
tree | 5aba77a579a75a7fd3c7b752bbc6be2a9a608915 /Makefile.am | |
parent | d8364902b34f1c3980c148d730fe2bc60d189001 (diff) | |
download | neard-6393c7fe38a6c49c6e962d1aa7c9698e9a3892fb.tar.gz neard-6393c7fe38a6c49c6e962d1aa7c9698e9a3892fb.tar.bz2 neard-6393c7fe38a6c49c6e962d1aa7c9698e9a3892fb.zip |
snep: SNEP core moved from plugins to core
This is needed for implementing SNEP unit tests.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index c5d76a8..a276ed3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,7 +6,7 @@ includedir = @includedir@/near include_HEADERS = include/types.h include/log.h include/plugin.h \ include/tag.h include/adapter.h include/ndef.h \ include/tlv.h include/setting.h include/device.h \ - include/nfc_copy.h + include/nfc_copy.h include/snep.h nodist_include_HEADERS = include/version.h @@ -38,7 +38,7 @@ src_neard_SOURCES = $(gdbus_sources) $(gweb_sources) $(builtin_sources) \ src/main.c src/error.c src/near.h src/log.c \ src/dbus.c src/manager.c src/adapter.c src/device.c \ src/tag.c src/plugin.c src/netlink.c src/ndef.c \ - src/tlv.c src/bluetooth.c src/agent.c + src/tlv.c src/bluetooth.c src/agent.c src/snep.c src_neard_LDADD = $(builtin_libadd) @GLIB_LIBS@ @DBUS_LIBS@ @NETLINK_LIBS@ -lresolv -ldl |