mirror of
https://github.com/haiwen/libsearpc.git
synced 2025-09-24 19:56:52 +00:00
28 lines
714 B
Makefile
28 lines
714 B
Makefile
|
|
# Two files are generated by a python script:
|
|
#
|
|
# Used in server:
|
|
#
|
|
# * searpc-signature.h: contains functions like `searpc_signature_int__string()`.
|
|
# * searpc-marshal.h: contains functions like `marshal_int__string()`
|
|
#
|
|
|
|
AM_CFLAGS = @GLIB_CFLAGS@ \
|
|
-I${top_builddir}/lib \
|
|
-I${top_srcdir}/json-glib \
|
|
-I${top_srcdir}/lib \
|
|
-DG_LOG_DOMAIN=\"Searpc\"
|
|
|
|
lib_LTLIBRARIES = libsearpc.la
|
|
|
|
include_HEADERS = searpc-client.h searpc-server.h searpc-utils.h searpc.h
|
|
|
|
libsearpc_la_SOURCES = searpc-client.c searpc-server.c
|
|
|
|
libsearpc_la_LDFLAGS = -version-info 1:2:0 -no-undefined
|
|
|
|
libsearpc_la_LIBADD = @GLIB_LIBS@ \
|
|
${top_builddir}/json-glib/json-glib/libsearpc-json-glib.la
|
|
|
|
dist_bin_SCRIPTS = searpc-codegen.py
|