open5gs/src/mme/Makefile.am

46 lines
1.1 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-03-04 14:48:04 +00:00
event.h context.h \
2017-03-04 14:26:22 +00:00
s1ap_build.h s1ap_conv.h s1ap_path.h \
2017-03-04 15:46:48 +00:00
s6a_message.h \
2017-03-04 14:26:22 +00:00
sm.h
nodist_libmme_la_SOURCES = \
init.c event.c context.c \
s1ap_build.c s1ap_conv.c s1ap_path.c \
2017-03-04 15:20:09 +00:00
s6a_init.c s6a_auth_info.c \
2017-03-05 08:36:16 +00:00
mme_sm.c enb_s1ap_sm.c ue_emm_sm.c
2017-03-04 14:26:22 +00:00
libmme_la_DEPENDENCIES = \
$(top_srcdir)/lib/core/src/libcore.la \
$(top_srcdir)/lib/3gpp/lib3gpp.la \
$(top_srcdir)/lib/s1ap/libs1ap.la \
$(top_srcdir)/lib/nas/libnas.la \
$(top_srcdir)/lib/s6a/libs6a.la
libmme_la_LIBADD = \
$(top_srcdir)/lib/core/src/libcore.la \
$(top_srcdir)/lib/3gpp/lib3gpp.la \
$(top_srcdir)/lib/s1ap/libs1ap.la \
$(top_srcdir)/lib/nas/libnas.la \
$(top_srcdir)/lib/s6a/libs6a.la
AM_CPPFLAGS = \
-I$(top_srcdir)/lib/core/include \
-I$(top_srcdir)/lib/3gpp \
-I$(top_srcdir)/lib/s1ap/asn1c \
-I$(top_srcdir)/lib/s1ap \
-I$(top_srcdir)/lib/nas \
-I$(top_srcdir)/lib/s6a
AM_CFLAGS = \
-Wall -Werror
MAINTAINERCLEANFILES = Makefile.in
MOSTLYCLEANFILES = core *.stackdump
EXTRA_DIST = .libs $(noinst_LTLIBRARIES)