stub binding wifi engine

This commit is contained in:
vemax78
2013-05-01 21:33:54 +02:00
parent 930b0a6a3a
commit 05ab7a3787
9 changed files with 210 additions and 48 deletions

View File

@ -33,7 +33,8 @@ endif
INCLUDES = \
-I$(top_srcdir)/build \
-I$(top_srcdir)/src/common \
-I$(top_srcdir)/src/wtp
-I$(top_srcdir)/src/wtp \
-I$(top_srcdir)/src/binding/wifi/drivers
include $(top_srcdir)/build/Makefile_common.am
@ -50,7 +51,8 @@ wtp_SOURCES = \
$(top_srcdir)/src/wtp/wtp_dfa_datacheck.c \
$(top_srcdir)/src/wtp/wtp_dfa_run.c \
$(top_srcdir)/src/wtp/wtp_dfa_reset.c \
$(top_srcdir)/src/wtp/wtp_dfa_imagedata.c
$(top_srcdir)/src/wtp/wtp_dfa_imagedata.c \
$(top_srcdir)/src/binding/wifi/drivers/wifi_drivers.c
wtp_LDADD = \
$(CONFIG_LIBS)
@ -58,3 +60,7 @@ wtp_LDADD = \
if DTLS_ENABLED
wtp_LDADD += $(SSL_LIBS)
endif
if BUILD_WTP_WIFI_DRIVERS_NL80211
wtp_SOURCES += $(top_srcdir)/src/binding/wifi/drivers/wifi_nl80211.c
endif