Newer ubuntu's do not seem to honor the implied library dependency of libtt->libtirpc, so we must explicitly specify libtirpc when linking them.
16 lines
274 B
Makefile
16 lines
274 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
include ../../tooltalk.inc
|
|
|
|
bin_PROGRAMS = tttrace
|
|
|
|
tttrace_CXXFLAGS = -I../../lib
|
|
|
|
tttrace_LDADD = @LIBTT@ $(TIRPCLIB) $(XTOOLLIB)
|
|
|
|
if SOLARIS
|
|
tttrace_LDADD += -ldl -lintl -lsocket -lnsl
|
|
endif
|
|
|
|
tttrace_SOURCES = tttrace.C tttrace_objs.C
|