open5gs/src/mme/Makefile.am

56 lines
1.6 KiB
Makefile
Raw Normal View History

2017-03-04 14:26:22 +00:00
## Process this file with automake to produce Makefile.in.
noinst_LTLIBRARIES = libmme.la
libmme_la_SOURCES = \
2017-04-04 02:08:32 +00:00
mme_kdf.h kasumi.h snow_3g.h zuc.h \
2017-04-06 10:20:33 +00:00
mme_event.h mme_context.h \
2017-03-26 05:57:33 +00:00
s1ap_build.h s1ap_handler.h s1ap_conv.h s1ap_path.h \
2017-04-04 02:00:25 +00:00
mme_s6a_handler.h \
2017-04-11 03:57:54 +00:00
nas_conv.h nas_security.h \
2017-04-12 13:27:32 +00:00
emm_handler.h emm_build.h \
2017-04-11 03:57:54 +00:00
esm_handler.h esm_build.h \
2017-04-12 12:44:18 +00:00
mme_s11_path.h mme_s11_build.h mme_s11_handler.h \
2017-04-04 02:00:25 +00:00
mme_sm.h
2017-03-04 14:26:22 +00:00
nodist_libmme_la_SOURCES = \
2017-04-04 02:08:32 +00:00
mme_kdf.c kasumi.c snow_3g.c zuc.c \
2017-04-06 10:20:33 +00:00
mme_init.c mme_event.c mme_context.c \
2017-03-27 10:32:24 +00:00
s1ap_sm.c s1ap_build.c s1ap_handler.c s1ap_conv.c s1ap_path.c \
2017-04-04 02:00:25 +00:00
mme_s6a_handler.c \
2017-04-12 13:27:32 +00:00
nas_conv.c nas_security.c emm_sm.c emm_handler.c emm_build.c \
2017-04-11 03:57:54 +00:00
esm_sm.c esm_handler.c esm_build.c \
2017-04-12 12:44:18 +00:00
mme_s11_path.c mme_s11_build.c mme_s11_handler.c \
2017-04-04 02:00:25 +00:00
mme_sm.c
2017-03-04 14:26:22 +00:00
libmme_la_DEPENDENCIES = \
$(top_srcdir)/lib/core/src/libcore.la \
$(top_srcdir)/lib/s1ap/libs1ap.la \
$(top_srcdir)/lib/nas/libnas.la \
2017-03-12 01:23:49 +00:00
$(top_srcdir)/lib/s6a/libs6a.la \
$(top_srcdir)/lib/gtp/libgtp.la
2017-03-04 14:26:22 +00:00
libmme_la_LIBADD = \
$(top_srcdir)/lib/core/src/libcore.la \
$(top_srcdir)/lib/s1ap/libs1ap.la \
$(top_srcdir)/lib/nas/libnas.la \
2017-03-12 01:23:49 +00:00
$(top_srcdir)/lib/s6a/libs6a.la \
$(top_srcdir)/lib/gtp/libgtp.la
2017-03-04 14:26:22 +00:00
AM_CPPFLAGS = \
-I$(top_srcdir)/lib/core/include \
2017-07-13 01:31:07 +00:00
-I$(top_srcdir)/lib/base \
2017-03-04 14:26:22 +00:00
-I$(top_srcdir)/lib/s1ap/asn1c \
-I$(top_srcdir)/lib/s1ap \
-I$(top_srcdir)/lib/nas \
2017-03-12 01:23:49 +00:00
-I$(top_srcdir)/lib/s6a \
-I$(top_srcdir)/lib/gtp
2017-03-04 14:26:22 +00:00
AM_CFLAGS = \
-Wall -Werror
MAINTAINERCLEANFILES = Makefile.in
MOSTLYCLEANFILES = core *.stackdump
EXTRA_DIST = .libs $(noinst_LTLIBRARIES)