mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 23:37:22 +00:00
21 lines
396 B
Makefile
21 lines
396 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LTLIBRARIES = libgtp.la
|
|
|
|
libgtp_la_SOURCES = \
|
|
gtpv2c_tlv.h
|
|
|
|
nodist_libgtp_la_SOURCES = \
|
|
gtpv2c_tlv.c
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/lib/core/include \
|
|
-I$(top_srcdir)/lib/3gpp
|
|
|
|
AM_CFLAGS = \
|
|
-Wall -Werror
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
MOSTLYCLEANFILES = *.stackdump
|
|
|
|
EXTRA_DIST = .libs $(noinst_LTLIBRARIES)
|