Also, restructure some of the dependencies in the lib/tt binaries. We
will link with libtt (which will include libtirpc as a dependency),
and XTOOLLIB - all the right X11 stuff without needing to add it to
every OS. Removed several uneeded OS specializations ("if LINUX",
etc) as a result.
22 lines
365 B
Makefile
22 lines
365 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
include ../../tooltalk.inc
|
|
|
|
bin_PROGRAMS = ttmv ttrm ttcp ttrmdir
|
|
|
|
AM_CXXFLAGS = -I../../lib $(TT_VERSION_DEFINE)
|
|
|
|
LDADD = @LIBTT@ $(XTOOLLIB)
|
|
|
|
if SOLARIS
|
|
LDADD += -ldl -lintl -lsocket -lnsl
|
|
endif
|
|
|
|
ttmv_SOURCES = ttmv.C mover.C
|
|
|
|
ttrm_SOURCES = ttrm.C remover.C
|
|
|
|
ttcp_SOURCES = ttcp.C copier.C
|
|
|
|
ttrmdir_SOURCES = ttrm.C remover.C
|