mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 23:37:22 +00:00
26 lines
543 B
Makefile
26 lines
543 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
extlib_LTLIBRARIES = dict_s6a.la
|
|
|
|
dict_s6a_la_SOURCES = \
|
|
dict_s6a.c
|
|
|
|
dict_s6a_la_DEPENDENCIES = \
|
|
$(top_srcdir)/libfdcore/libfdcore.la \
|
|
$(top_srcdir)/libfdproto/libfdproto.la
|
|
|
|
dict_s6a_la_LIBADD = \
|
|
$(top_srcdir)/libfdcore/libfdcore.la \
|
|
$(top_srcdir)/libfdproto/libfdproto.la
|
|
|
|
AM_LDFLAGS = \
|
|
-module -avoid-version -shared
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/include
|
|
|
|
AM_CFLAGS = \
|
|
-Wall -Werror
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
MOSTLYCLEANFILES = *.stackdump
|