You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
773 B
33 lines
773 B
#
|
|
# Makefile.am
|
|
# Automake File
|
|
# The linked in library libcommonlibslp, which is from ../common
|
|
# containing exacts functions which are required.
|
|
#
|
|
|
|
EXTRA_DIST =
|
|
lib_LTLIBRARIES = libslp.la
|
|
include_HEADERS = slp.h
|
|
INCLUDES = -I$(top_srcdir)/common
|
|
|
|
libslp_la_SOURCES = libslp_dereg.c \
|
|
libslp_findscopes.c \
|
|
libslp_reg.c \
|
|
libslp_findsrvs.c \
|
|
libslp_parse.c \
|
|
libslp_property.c \
|
|
libslp_handle.c \
|
|
libslp_thread.c \
|
|
libslp_network.c \
|
|
libslp_findattrs.c \
|
|
libslp_delattrs.c \
|
|
libslp_findsrvtypes.c \
|
|
libslp_knownda.c \
|
|
libslp.h
|
|
|
|
#if you're building on Irix, exchange commented and uncommented lines
|
|
#libslp_la_LIBADD = -L../common/libcommonlibslp
|
|
libslp_la_LIBADD = ../common/libcommonlibslp.la
|
|
|
|
libslp_la_LDFLAGS = -version-info 1:1:0
|