Fix automake & meson

Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
This commit is contained in:
Adrien Gallouët
2020-04-02 20:27:07 +00:00
parent 6091853f46
commit 1e62537ac3
2 changed files with 8 additions and 4 deletions

View File

@@ -7,10 +7,10 @@ glorytun_LDADD = $(libsodium_LIBS)
glorytun_SOURCES = \
argz/argz.c \
argz/argz.h \
mud/mud.c \
mud/mud.h \
mud/aegis256/aegis256.c \
mud/aegis256/aegis256.h \
mud/mud.c \
mud/mud.h \
src/bench.c \
src/bind.c \
src/common.c \
@@ -21,13 +21,15 @@ glorytun_SOURCES = \
src/iface.h \
src/ip.h \
src/keygen.c \
src/list.c \
src/main.c \
src/path.c \
src/set.c \
src/show.c \
src/str.h \
src/tun.c \
src/tun.h
src/tun.h \
src/version.c
EXTRA_DIST = \
LICENSE \

View File

@@ -22,19 +22,21 @@ add_global_arguments('-DPACKAGE_NAME="'+meson.project_name()+'"', language : 'c'
executable('glorytun', install: true,
sources: [
'argz/argz.c',
'mud/mud.c',
'mud/aegis256/aegis256.c',
'mud/mud.c',
'src/bench.c',
'src/bind.c',
'src/common.c',
'src/ctl.c',
'src/iface.c',
'src/keygen.c',
'src/list.c',
'src/main.c',
'src/path.c',
'src/set.c',
'src/show.c',
'src/tun.c',
'src/version.c',
],
dependencies: [
dependency('libsodium', version : '>=1.0.4'),