1d7ed3a17e
This should allow an autoregen and ./confiure to work. We only generate Makefiles for lib/* and ./Makefile for now. We'll ad more as we go along. Make still fails as we need to figure out TT - tirpc lib, rpcgen, etc. But it's a start!
24 lines
445 B
Makefile
24 lines
445 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
include ../../tooltalk.tmpl
|
|
|
|
bin_PROGRAMS = ttsession
|
|
|
|
ttsession_CXXFLAGS = -I../../slib -I../../lib $(TIRPCINC) $(TT_VERSION_DEFINE)
|
|
|
|
ttsession_LDADD = $(LIBTT) $(X_LIBS) ../../slib/libstt.a
|
|
|
|
if LINUX
|
|
ttsession_LDADD += $(TIRPCLIB) $(XTOOLLIB)
|
|
endif
|
|
|
|
if SOLARIS
|
|
ttsession_LDADD += $(XTOOLLIB) -ldl -lintl -lsocket -lnsl
|
|
endif
|
|
|
|
if OPENBSD
|
|
ttsession_LDADD += $(XTOOLLIB)
|
|
endif
|
|
|
|
ttsession_SOURCES = mp_server.C
|