open5gs/lib/core/src/unix/Makefile.am

27 lines
751 B
Makefile

## Process this file with automake to produce Makefile.in
noinst_LTLIBRARIES = libcoreunix.la
libcoreunix_la_SOURCES = \
../../include/arch/core_private_common.h \
../../include/arch/unix/core_arch_file.h \
../../include/arch/unix/core_arch_mutex.h \
../../include/arch/unix/core_arch_semaphore.h
nodist_libcoreunix_la_SOURCES = \
cond.c file.c net_lib.c thread.c errorcodes.c mutex.c rwlock.c \
start.c time.c semaphore.c signal.c pkbuf.c
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/lib/core/include/arch/@OSDIR@ \
-I$(top_srcdir)/lib/core/include
AM_CFLAGS = \
-Wall -Werror @OSCFLAGS@
MAINTAINERCLEANFILES = Makefile.in
MOSTLYCLEANFILES = core *.stackdump
EXTRA_DIST = .libs $(noinst_LTLIBRARIES)