mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-07 00:36:55 +00:00
25 lines
369 B
Makefile
25 lines
369 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
pkglib_LTLIBRARIES = libbase.la
|
|
|
|
libbase_la_SOURCES = \
|
|
base.h \
|
|
types.h types.c \
|
|
context.h context.c \
|
|
$(NULL)
|
|
|
|
libbase_la_DEPENDENCIES = \
|
|
@OGSCORE_LIBS@ \
|
|
$(NULL)
|
|
|
|
libbase_la_LIBADD = \
|
|
@OGSCORE_LIBS@ \
|
|
$(NULL)
|
|
|
|
AM_CPPFLAGS = \
|
|
@OGSCORE_CFLAGS@ \
|
|
$(NULL)
|
|
|
|
AM_CFLAGS = \
|
|
-Wall -Werror \
|
|
$(NULL)
|