moved some functions to sys.c
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-05-06 22:24:08 +00:00
parent fa90b72c85
commit 514b6dc96d
7 changed files with 340 additions and 145 deletions

View File

@ -56,6 +56,7 @@ pkginclude_HEADERS = \
hcl-rbt.h \
hcl-upac.h \
hcl-utl.h \
hcl-sys.h \
hcl-xma.h
pkglib_LTLIBRARIES = libhcl.la
@ -108,13 +109,18 @@ if ENABLE_HCLX
pkglib_LTLIBRARIES += libhclx.la
pkginclude_HEADERS += hcl-x.h hcl-tmr.h hcl-xutl.h hcl-json.h
libhclx_la_SOURCES = \
tmr.c hcl-tmr.h \
xutl.c xutl-sa.h hcl-xutl.h \
json.c hcl-json.h \
hcl-json.h \
hcl-sys.h \
hcl-tmr.h \
hcl-x.h \
hcl-xtul.h \
json.c \
sys.c \
tmr.c \
x-client.c \
x-proto.c \
x-server.c
x-server.c \
xutl.c xutl-sa.h
libhclx_la_CPPFLAGS = $(CPPFLAGS_LIB_COMMON) $(CPPFLAGS_PFMOD)
libhclx_la_LDFLAGS = $(LDFLAGS_LIB_COMMON)
libhclx_la_LIBADD = libhcl.la $(LIBADD_LIB_COMMON)