mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
26 lines
548 B
Makefile
26 lines
548 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
extlib_LTLIBRARIES = dict_dcca.la
|
|
|
|
dict_dcca_la_SOURCES = \
|
|
dict_dcca.c
|
|
|
|
dict_dcca_la_DEPENDENCIES = \
|
|
$(top_srcdir)/libfdcore/libfdcore.la \
|
|
$(top_srcdir)/libfdproto/libfdproto.la
|
|
|
|
dict_dcca_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
|