dect
/
libnl
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
libnl/src/Makefile.am

128 lines
4.0 KiB
Makefile

# -*- Makefile -*-
SUBDIRS = lib
AM_CFLAGS = -Wall -I${top_srcdir}/include -D_GNU_SOURCE
AM_LDFLAGS = -L${top_builddir}/lib -L${top_builddir}/src/lib -lnl-cli
noinst_PROGRAMS = \
genl-ctrl-list \
nf-ct-list nf-log nf-queue nf-monitor \
nl-addr-add nl-addr-delete nl-addr-list \
nl-link-list nl-link-set nl-link-stats \
nl-link-ifindex2name nl-link-name2ifindex \
nl-neigh-add nl-neigh-delete nl-neigh-list \
nl-qdisc-delete nl-qdisc-list \
nl-rule-list \
nl-neightbl-list \
nl-monitor \
nl-tctree-list \
nl-route-add nl-route-delete nl-route-get nl-route-list \
nl-fib-lookup \
nl-list-caches nl-list-sockets \
nl-util-addr \
dect-transceiver-bind dect-transceiver-list \
dect-cell-add dect-cell-delete dect-cell-list \
dect-cluster-add dect-cluster-delete dect-cluster-list \
dect-llme-mac-con dect-llme-monitor dect-llme-scan
genl_ctrl_list_SOURCES = genl-ctrl-list.c
genl_ctrl_list_LDADD = -lnl-genl -lnl-route
nf_ct_list_SOURCES = nf-ct-list.c
nf_ct_list_LDADD = -lnl-nf
nf_log_SOURCES = nf-log.c
nf_log_LDADD = -lnl-nf
nf_queue_SOURCES = nf-queue.c
nf_queue_LDADD = -lnl-nf
nf_monitor_SOURCES = nf-monitor.c
nf_monitor_LDADD = -lnl-nf
nl_addr_add_SOURCES = nl-addr-add.c
nl_addr_add_LDADD = -lnl-route
nl_addr_delete_SOURCES = nl-addr-delete.c
nl_addr_delete_LDADD = -lnl-route
nl_addr_list_SOURCES = nl-addr-list.c
nl_addr_list_LDADD = -lnl-route
nl_link_list_SOURCES = nl-link-list.c
nl_link_list_LDADD = -lnl-route
nl_link_set_SOURCES = nl-link-set.c
nl_link_set_LDADD = -lnl-route
nl_link_stats_SOURCES = nl-link-stats.c
nl_link_stats_LDADD = -lnl-route
nl_link_ifindex2name_SOURCES = nl-link-ifindex2name.c
nl_link_ifindex2name_LDADD = -lnl-route
nl_link_name2ifindex_SOURCES = nl-link-name2ifindex.c
nl_link_name2ifindex_LDADD = -lnl-route
nl_monitor_SOURCES = nl-monitor.c
nl_monitor_LDADD = -lnl-route
nl_neigh_add_SOURCES = nl-neigh-add.c
nl_neigh_add_LDADD = -lnl-route
nl_neigh_delete_SOURCES = nl-neigh-delete.c
nl_neigh_delete_LDADD = -lnl-route
nl_neigh_list_SOURCES = nl-neigh-list.c
nl_neigh_list_LDADD = -lnl-route
nl_neightbl_list_SOURCES = nl-neightbl-list.c
nl_neightbl_list_LDADD = -lnl-route
nl_qdisc_delete_SOURCES = nl-qdisc-delete.c
nl_qdisc_delete_LDADD = -lnl-route
nl_qdisc_list_SOURCES = nl-qdisc-list.c
nl_qdisc_list_LDADD = -lnl-route
nl_route_add_SOURCES = nl-route-add.c
nl_route_add_LDADD = -lnl-route
nl_route_delete_SOURCES = nl-route-delete.c
nl_route_delete_LDADD = -lnl-route
nl_route_get_SOURCES = nl-route-get.c
nl_route_get_LDADD = -lnl-route
nl_route_list_SOURCES = nl-route-list.c
nl_route_list_LDADD = -lnl-route
nl_rule_list_SOURCES = nl-rule-list.c
nl_rule_list_LDADD = -lnl-route
nl_tctree_list_SOURCES = nl-tctree-list.c
nl_tctree_list_LDADD = -lnl-route
nl_fib_lookup_SOURCES = nl-fib-lookup.c
nl_fib_lookup_LDADD = -lnl-route
nl_list_caches_SOURCES = nl-list-caches.c
nl_list_caches_LDADD = -lnl-route
nl_list_sockets_SOURCES = nl-list-sockets.c
nl_list_sockets_LDADD = -lnl-route
nl_util_addr_SOURCES = nl-util-addr.c
nl_util_addr_LDADD = -lnl-route
dect_transceiver_bind_SOURCES = dect-transceiver-bind.c utils.c
dect_transceiver_bind_LDADD = -lnl-dect
dect_transceiver_list_SOURCES = dect-transceiver-list.c utils.c
dect_transceiver_list_LDADD = -lnl-dect
dect_cell_add_SOURCES = dect-cell-add.c utils.c
dect_cell_add_LDADD = -lnl-dect
dect_cell_delete_SOURCES = dect-cell-delete.c utils.c
dect_cell_delete_LDADD = -lnl-dect
dect_cell_list_SOURCES = dect-cell-list.c utils.c
dect_cell_list_LDADD = -lnl-dect
dect_cluster_add_SOURCES = dect-cluster-add.c utils.c
dect_cluster_add_LDADD = -lnl-dect
dect_cluster_delete_SOURCES = dect-cluster-delete.c utils.c
dect_cluster_delete_LDADD = -lnl-dect
dect_cluster_list_SOURCES = dect-cluster-list.c utils.c
dect_cluster_list_LDADD = -lnl-dect
dect_llme_mac_con_SOURCES = dect-llme-mac-con.c utils.c
dect_llme_mac_con_LDADD = -lnl-dect
dect_llme_monitor_SOURCES = dect-llme-monitor.c utils.c
dect_llme_monitor_LDADD = -lnl-dect
dect_llme_scan_SOURCES = dect-llme-scan.c utils.c
dect_llme_scan_LDADD = -lnl-dect