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.
48 lines
926 B
48 lines
926 B
# # Makefile.am -- Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = \
|
|
$(PTHREAD_CFLAGS) \
|
|
-DMOD_PATH=\"$(MOD_PATH)\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/src \
|
|
$(PVM3_CFLAGS)
|
|
|
|
AM_LDFLAGS = -export-dynamic
|
|
|
|
pkgdir = $(MOD_PATH)
|
|
|
|
bin_PROGRAMS = tcpvmexportd
|
|
pkg_LTLIBRARIES = pvm_functions.la
|
|
|
|
pvm_functions_la_SOURCES = pvm_functions.c
|
|
pvm_functions_la_LDFLAGS = -module -avoid-version
|
|
pvm_functions_la_LIBADD = $(PVM3_LIBS)
|
|
|
|
tcpvmexportd_SOURCES = \
|
|
tcpvmexportd.c \
|
|
export_pvm_slave.c \
|
|
pvm_interface.c \
|
|
pvm_parser.c \
|
|
external_codec.c \
|
|
vob_pack_unpack.c
|
|
|
|
tcpvmexportd_LDADD = \
|
|
$(ACLIB_LIBS) \
|
|
$(LIBTC_LIBS) \
|
|
-lm
|
|
|
|
EXTRA_DIST = \
|
|
pvm_functions.h \
|
|
export_pvm_slave.h \
|
|
pvm_interface.h \
|
|
pvm_parser.h \
|
|
external_codec.h \
|
|
pvm_version.h \
|
|
vob_pack_unpack.h
|
|
|
|
install-data-local:
|
|
@$(NORMAL_INSTALL)
|
|
if test ! -e $(bindir)/pvmgs; then \
|
|
ln -s $(PVM3_PVMGS) $(bindir)/pvmgs; \
|
|
fi;
|