You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
43 lines
1.2 KiB
bin_PROGRAMS = utun |
|
|
|
utun_SOURCES = \ |
|
utun.c \ |
|
utun_instance.c \ |
|
config_parser.c \ |
|
routing.c \ |
|
tun_if.c \ |
|
etcp.c \ |
|
etcp_connections.c \ |
|
secure_channel.c \ |
|
crc32.c \ |
|
pkt_normalizer.c \ |
|
packet_pool.c \ |
|
memory_pool.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/aes_encrypt.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/aes_decrypt.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/cbc_mode.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/ccm_mode.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/cmac_mode.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/ctr_mode.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/ecc.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/ecc_dh.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/ecc_dsa.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/ecc_platform_specific.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/hmac.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/sha256.c \ |
|
$(top_srcdir)/tinycrypt/lib/source/utils.c |
|
|
|
utun_CFLAGS = \ |
|
-I$(top_srcdir)/lib \ |
|
-I$(top_srcdir)/tinycrypt/lib/include \ |
|
-I$(top_srcdir)/tinycrypt/lib/source \ |
|
$(DEBUG_FLAGS) |
|
|
|
utun_LDADD = \ |
|
$(top_builddir)/lib/libuasync.a \ |
|
-lpthread |
|
|
|
# Install directories |
|
install-exec-hook: |
|
$(MKDIR_P) $(DESTDIR)$(bindir) |
|
$(MKDIR_P) $(DESTDIR)$(sysconfdir)/utun
|
|
|